Submission details
Task:Hypyt
Sender:sevti
Submission time:2025-10-28 09:18:23 +0200
Language:Python3 (PyPy3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
#50
Test results
testverdicttimegroup
#10.05 s1, 2, 3, 4, 5details
#20.06 s1, 2, 3, 4, 5details
#30.05 s1, 2, 3, 4, 5details
#40.05 s1, 2, 3, 4, 5details
#50.05 s1, 2, 3, 4, 5details
#6--2, 5details
#70.21 s2, 5details
#80.17 s2, 5details
#9--3, 4, 5details
#10--3, 4, 5details
#110.45 s3, 4, 5details
#12--4, 5details
#13--4, 5details
#140.67 s4, 5details
#15--5details
#16--5details
#17--5details
#18--5details
#190.44 s5details
#200.56 s5details
#21--5details
#220.05 s1, 2, 3, 4, 5details
#230.05 s1, 2, 3, 4, 5details
#240.40 s5details
#250.42 s5details
#26--5details
#27ACCEPTED0.21 s5details

Code

import sys
from collections import deque



def main():
    data = sys.stdin.read().splitlines()
    it = iter(data)
    n, m, q = map(int, next(it).split())
    grid = [list(next(it).strip()) for _ in range(n)]
    
    cell_to_idx = {}
    idx_to_cell = {}
    idx = 0
    
    for r in range(n):
        for c in range(m):
            if grid[r][c] == '.':
                cell_to_idx[(r, c)] = idx
                idx_to_cell[idx] = (r, c)
                idx += 1
    
    N = idx
    adj = [[] for _ in range(N)]
    
    for r in range(n):
        for c in range(m):
            if grid[r][c] != '.':
                continue
            
            u = cell_to_idx[(r, c)]
            
            for c2 in range(c + 1, m):
                if grid[r][c2] == '*':
                    break
                v = cell_to_idx[(r, c2)]
                adj[u].append(v)
            
            for c2 in range(c - 1, -1, -1):
                if grid[r][c2] == '*':
                    break
                v = cell_to_idx[(r, c2)]
                adj[u].append(v)
            
            for r2 in range(r + 1, n):
                if grid[r2][c] == '*':
                    break
                v = cell_to_idx[(r2, c)]
                adj[u].append(v)
            
            for r2 in range(r - 1, -1, -1):
                if grid[r2][c] == '*':
                    break
                v = cell_to_idx[(r2, c)]
                adj[u].append(v)
    
    out = []
    
    for _ in range(q):
        y1, x1, y2, x2 = map(int, next(it).split())
        y1 -= 1
        x1 -= 1
        y2 -= 1
        x2 -= 1
        
        if y1 == y2 and x1 == x2:
            out.append("0")
            continue
        
        start = cell_to_idx[(y1, x1)]
        end = cell_to_idx[(y2, x2)]
        dist = [-1] * N
        dist[start] = 0
        queue = deque([start])
        
        while queue:
            u = queue.popleft()
            
            if u == end:
                break
            
            for v in adj[u]:
                if dist[v] == -1:
                    dist[v] = dist[u] + 1
                    queue.append(v)
        
        out.append(str(dist[end]))
    
    print("\n".join(out))



if __name__ == "__main__":
    main()

Test details

Test 1 (public)

Group: 1, 2, 3, 4, 5

Verdict:

input
4 6 5
.*.***
*...**
*****.
*..*.*
...

correct output
1
0
3
3
-1

user output
-1
0
-1
-1
-1

Feedback: Incorrect character on line 1 col 1: expected "1", got "-1"

Test 2

Group: 1, 2, 3, 4, 5

Verdict:

input
10 10 10
..........
.....*....
........*.
*.*....*..
...

correct output
1
2
1
2
2
...

user output
1
4
1
4
2
...

Feedback: Incorrect character on line 2 col 1: expected "2", got "4"

Test 3

Group: 1, 2, 3, 4, 5

Verdict:

input
10 10 10
*...***.**
*****.*...
**..**.**.
..**.**.*.
...

correct output
1
2
2
1
2
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "1", got "-1"

Test 4

Group: 1, 2, 3, 4, 5

Verdict:

input
10 10 10
***.*.****
**********
*.********
.*.***.**.
...

correct output
3
4
2
3
4
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "3", got "-1"

Test 5

Group: 1, 2, 3, 4, 5

Verdict:

input
10 10 1
.****.****
**.**..***
**********
*******..*
...

correct output
7

user output
-1

Feedback: Incorrect character on line 1 col 1: expected "7", got "-1"

Test 6

Group: 2, 5

Verdict:

input
250 250 250
.*...*.....*******..**...*.......

correct output
2
3
3
2
2
...

user output
(empty)

Test 7

Group: 2, 5

Verdict:

input
250 250 250
...*......**.**.*.*..**..*..**...

correct output
2
2
2
2
3
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "2", got "-1"

Test 8

Group: 2, 5

Verdict:

input
250 250 250
**..**..****.****.*.***.***..*...

correct output
2
3
3
3
3
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "2", got "-1"

Test 9

Group: 3, 4, 5

Verdict:

input
40 40 200000
...*.**.*..*.............*.*.....

correct output
2
2
2
2
2
...

user output
(empty)

Test 10

Group: 3, 4, 5

Verdict:

input
40 40 200000
**.**..*.*.*.******....****.*....

correct output
2
1
3
2
2
...

user output
(empty)

Test 11

Group: 3, 4, 5

Verdict:

input
40 40 200000
.*.*.**.*****.***.*.****.**.**...

correct output
3
3
3
3
3
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "3", got "-1"

Test 12

Group: 4, 5

Verdict:

input
80 80 200000
*....**.***..****...*.....*......

correct output
2
2
2
2
2
...

user output
(empty)

Test 13

Group: 4, 5

Verdict:

input
80 80 200000
.***.*..*.***..*****....**...*...

correct output
3
2
2
3
2
...

user output
(empty)

Test 14

Group: 4, 5

Verdict:

input
80 80 200000
*******.*****.*..*..****...***...

correct output
2
3
1
2
2
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "2", got "-1"

Test 15

Group: 5

Verdict:

input
250 250 200000
*....*..*..*..**..*.........**...

correct output
3
2
2
2
2
...

user output
(empty)

Test 16

Group: 5

Verdict:

input
250 250 200000
..*....*..*......*.**.*.*..***...

correct output
2
2
2
2
2
...

user output
(empty)

Test 17

Group: 5

Verdict:

input
250 250 200000
*..*.*****.*********.****.****...

correct output
3
3
2
2
2
...

user output
(empty)

Test 18

Group: 5

Verdict:

input
250 250 200000
*********.**********.******.**...

correct output
3
3
3
3
3
...

user output
(empty)

Test 19

Group: 5

Verdict:

input
250 250 200000
.*****************************...

correct output
104
422
145
93
65
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "104", got "-1"

Test 20

Group: 5

Verdict:

input
250 250 200000
..****************************...

correct output
57
155
38
65
98
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "57", got "-1"

Test 21

Group: 5

Verdict:

input
250 250 200000
.*****************************...

correct output
498
498
498
498
498
...

user output
(empty)

Test 22

Group: 1, 2, 3, 4, 5

Verdict:

input
10 1 10
*
*
.
*
...

correct output
0
1
1
0
0
...

user output
0
-1
-1
0
0
...

Feedback: Incorrect character on line 2 col 1: expected "1", got "-1"

Test 23

Group: 1, 2, 3, 4, 5

Verdict:

input
1 10 10
........*.
1 7 1 10
1 4 1 7
1 5 1 1
...

correct output
1
1
1
1
1
...

user output
-1
1
1
1
1
...

Feedback: Incorrect character on line 1 col 1: expected "1", got "-1"

Test 24

Group: 5

Verdict:

input
250 1 200000
*
.
*
.
...

correct output
1
1
1
1
1
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "1", got "-1"

Test 25

Group: 5

Verdict:

input
1 250 200000
*.*.*...*.*.**.***..**.*.*..**...

correct output
1
1
1
1
1
...

user output
-1
-1
-1
-1
-1
...

Feedback: Incorrect character on line 1 col 1: expected "1", got "-1"

Test 26

Group: 5

Verdict:

input
250 250 200000
.................................

correct output
2
2
2
2
2
...

user output
(empty)

Test 27

Group: 5

Verdict: ACCEPTED

input
250 250 200000
******************************...

correct output
0
0
0
0
0
...

user output
0
0
0
0
0
...