# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
626063 |
2022-08-11T07:41:02 Z |
54skyxenon |
Mecho (IOI09_mecho) |
Python 3 |
|
1000 ms |
19700 KB |
# https://oj.uz/problem/view/IOI09_mecho
from collections import deque
from math import ceil
n, s = map(int, input().split())
forest = []
for _ in range(n):
forest.append(input())
start = None
end = None
hives = []
for i in range(n):
for j in range(n):
if forest[i][j] == 'M':
start = (i, j)
if forest[i][j] == 'D':
end = (i, j)
if forest[i][j] == 'H':
hives.append((i, j))
dist_hive = [[float('inf')] * n for _ in range(n)]
hives_Q = deque()
for i, j in hives:
dist_hive[i][j] = 0
hives_Q.append((i, j, 0))
while hives_Q:
r, c, depth = hives_Q.popleft()
for nr, nc in [(r + 1, c), (r - 1, c), (r, c + 1), (r, c - 1)]:
if 0 <= nr < n and 0 <= nc < n and forest[nr][nc] == 'G' and dist_hive[nr][nc] == float('inf'):
hives_Q.append((nr, nc, depth + 1))
dist_hive[nr][nc] = depth + 1
def bs(lo, hi):
global dist_hive
def ok(midd):
seen = [[False] * n for _ in range(n)]
seen[start[0]][start[1]] = True
mecho_Q = deque([(start[0], start[1], 0)])
while mecho_Q:
r, c, depth = mecho_Q.popleft()
if (r, c) == end:
return True
for nr, nc in [(r + 1, c), (r - 1, c), (r, c + 1), (r, c - 1)]:
if 0 <= nr < n and 0 <= nc < n and forest[nr][nc] in {'G', 'D'} and (midd + ((depth + 1) // s)) < dist_hive[nr][nc] and not seen[nr][nc]:
seen[nr][nc] = True
mecho_Q.append((nr, nc, depth + 1))
return False
if not ok(lo):
return -1
while lo < hi:
mid = lo + (hi - lo + 1) // 2
if ok(mid):
lo = mid
else:
hi = mid - 1
return lo
print(bs(0, n ** 2))
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
17 ms |
3316 KB |
Output is correct |
2 |
Correct |
16 ms |
3284 KB |
Output is correct |
3 |
Correct |
15 ms |
3308 KB |
Output is correct |
4 |
Correct |
16 ms |
3284 KB |
Output is correct |
5 |
Correct |
16 ms |
3396 KB |
Output is correct |
6 |
Correct |
19 ms |
3412 KB |
Output is correct |
7 |
Execution timed out |
1096 ms |
10628 KB |
Time limit exceeded |
8 |
Correct |
18 ms |
3360 KB |
Output is correct |
9 |
Correct |
25 ms |
3412 KB |
Output is correct |
10 |
Correct |
25 ms |
3356 KB |
Output is correct |
11 |
Correct |
20 ms |
3296 KB |
Output is correct |
12 |
Incorrect |
25 ms |
3388 KB |
Output isn't correct |
13 |
Incorrect |
32 ms |
3452 KB |
Output isn't correct |
14 |
Correct |
34 ms |
3452 KB |
Output is correct |
15 |
Correct |
25 ms |
3412 KB |
Output is correct |
16 |
Correct |
23 ms |
3368 KB |
Output is correct |
17 |
Correct |
24 ms |
3396 KB |
Output is correct |
18 |
Correct |
24 ms |
3380 KB |
Output is correct |
19 |
Correct |
20 ms |
3412 KB |
Output is correct |
20 |
Correct |
19 ms |
3348 KB |
Output is correct |
21 |
Correct |
19 ms |
3360 KB |
Output is correct |
22 |
Correct |
28 ms |
3420 KB |
Output is correct |
23 |
Correct |
22 ms |
3484 KB |
Output is correct |
24 |
Correct |
26 ms |
3536 KB |
Output is correct |
25 |
Correct |
25 ms |
3428 KB |
Output is correct |
26 |
Correct |
28 ms |
3480 KB |
Output is correct |
27 |
Correct |
32 ms |
3372 KB |
Output is correct |
28 |
Correct |
30 ms |
3452 KB |
Output is correct |
29 |
Correct |
27 ms |
3392 KB |
Output is correct |
30 |
Correct |
31 ms |
3396 KB |
Output is correct |
31 |
Correct |
29 ms |
3456 KB |
Output is correct |
32 |
Correct |
32 ms |
3504 KB |
Output is correct |
33 |
Correct |
288 ms |
7460 KB |
Output is correct |
34 |
Correct |
302 ms |
7400 KB |
Output is correct |
35 |
Execution timed out |
1085 ms |
6936 KB |
Time limit exceeded |
36 |
Correct |
377 ms |
8736 KB |
Output is correct |
37 |
Correct |
382 ms |
8640 KB |
Output is correct |
38 |
Execution timed out |
1097 ms |
8136 KB |
Time limit exceeded |
39 |
Correct |
463 ms |
10136 KB |
Output is correct |
40 |
Correct |
494 ms |
10096 KB |
Output is correct |
41 |
Execution timed out |
1090 ms |
9788 KB |
Time limit exceeded |
42 |
Correct |
537 ms |
11652 KB |
Output is correct |
43 |
Correct |
601 ms |
11604 KB |
Output is correct |
44 |
Execution timed out |
1086 ms |
11600 KB |
Time limit exceeded |
45 |
Correct |
696 ms |
13376 KB |
Output is correct |
46 |
Correct |
699 ms |
13376 KB |
Output is correct |
47 |
Execution timed out |
1066 ms |
13740 KB |
Time limit exceeded |
48 |
Correct |
764 ms |
15360 KB |
Output is correct |
49 |
Correct |
801 ms |
15224 KB |
Output is correct |
50 |
Execution timed out |
1094 ms |
12880 KB |
Time limit exceeded |
51 |
Correct |
929 ms |
17452 KB |
Output is correct |
52 |
Correct |
994 ms |
17404 KB |
Output is correct |
53 |
Execution timed out |
1088 ms |
13332 KB |
Time limit exceeded |
54 |
Execution timed out |
1057 ms |
19700 KB |
Time limit exceeded |
55 |
Execution timed out |
1092 ms |
19572 KB |
Time limit exceeded |
56 |
Execution timed out |
1092 ms |
13768 KB |
Time limit exceeded |
57 |
Execution timed out |
1096 ms |
17176 KB |
Time limit exceeded |
58 |
Execution timed out |
1087 ms |
16760 KB |
Time limit exceeded |
59 |
Execution timed out |
1090 ms |
14476 KB |
Time limit exceeded |
60 |
Execution timed out |
1094 ms |
17524 KB |
Time limit exceeded |
61 |
Execution timed out |
1047 ms |
16724 KB |
Time limit exceeded |
62 |
Execution timed out |
1094 ms |
14248 KB |
Time limit exceeded |
63 |
Execution timed out |
1094 ms |
15040 KB |
Time limit exceeded |
64 |
Execution timed out |
1092 ms |
16788 KB |
Time limit exceeded |
65 |
Execution timed out |
1091 ms |
16992 KB |
Time limit exceeded |
66 |
Execution timed out |
1095 ms |
16496 KB |
Time limit exceeded |
67 |
Execution timed out |
1090 ms |
16604 KB |
Time limit exceeded |
68 |
Execution timed out |
1053 ms |
9764 KB |
Time limit exceeded |
69 |
Execution timed out |
1095 ms |
9556 KB |
Time limit exceeded |
70 |
Execution timed out |
1074 ms |
9684 KB |
Time limit exceeded |
71 |
Execution timed out |
1091 ms |
9524 KB |
Time limit exceeded |
72 |
Execution timed out |
1055 ms |
9560 KB |
Time limit exceeded |
73 |
Execution timed out |
1097 ms |
13204 KB |
Time limit exceeded |
74 |
Execution timed out |
1095 ms |
13264 KB |
Time limit exceeded |
75 |
Execution timed out |
1083 ms |
13292 KB |
Time limit exceeded |
76 |
Execution timed out |
1090 ms |
13204 KB |
Time limit exceeded |
77 |
Execution timed out |
1093 ms |
13324 KB |
Time limit exceeded |
78 |
Execution timed out |
1089 ms |
12392 KB |
Time limit exceeded |
79 |
Execution timed out |
1090 ms |
12276 KB |
Time limit exceeded |
80 |
Execution timed out |
1093 ms |
12344 KB |
Time limit exceeded |
81 |
Execution timed out |
1082 ms |
12376 KB |
Time limit exceeded |
82 |
Execution timed out |
1091 ms |
12372 KB |
Time limit exceeded |
83 |
Execution timed out |
1093 ms |
12112 KB |
Time limit exceeded |
84 |
Execution timed out |
1090 ms |
12196 KB |
Time limit exceeded |
85 |
Execution timed out |
1090 ms |
12100 KB |
Time limit exceeded |
86 |
Execution timed out |
1094 ms |
12136 KB |
Time limit exceeded |
87 |
Execution timed out |
1086 ms |
12300 KB |
Time limit exceeded |
88 |
Execution timed out |
1093 ms |
11468 KB |
Time limit exceeded |
89 |
Execution timed out |
1077 ms |
11320 KB |
Time limit exceeded |
90 |
Execution timed out |
1088 ms |
11660 KB |
Time limit exceeded |
91 |
Execution timed out |
1098 ms |
11352 KB |
Time limit exceeded |
92 |
Execution timed out |
1084 ms |
11404 KB |
Time limit exceeded |