結果

問題 No.2646 Cycle Maze
ユーザー NPNP
提出日時 2024-02-26 10:43:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,051 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 82,068 KB
最終ジャッジ日時 2024-09-29 11:36:11
合計ジャッジ時間 11,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,820 KB
testcase_01 AC 38 ms
53,332 KB
testcase_02 AC 40 ms
54,416 KB
testcase_03 AC 40 ms
54,548 KB
testcase_04 AC 42 ms
54,328 KB
testcase_05 AC 40 ms
53,540 KB
testcase_06 WA -
testcase_07 AC 39 ms
54,700 KB
testcase_08 WA -
testcase_09 AC 40 ms
53,572 KB
testcase_10 AC 40 ms
53,264 KB
testcase_11 AC 40 ms
53,568 KB
testcase_12 WA -
testcase_13 AC 39 ms
54,160 KB
testcase_14 WA -
testcase_15 AC 39 ms
53,172 KB
testcase_16 WA -
testcase_17 AC 38 ms
53,284 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
53,640 KB
testcase_21 AC 42 ms
53,524 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
53,816 KB
testcase_25 AC 205 ms
77,468 KB
testcase_26 AC 199 ms
77,640 KB
testcase_27 AC 295 ms
78,756 KB
testcase_28 AC 126 ms
76,968 KB
testcase_29 AC 211 ms
77,100 KB
testcase_30 AC 169 ms
77,192 KB
testcase_31 AC 210 ms
77,644 KB
testcase_32 AC 93 ms
76,576 KB
testcase_33 AC 189 ms
77,420 KB
testcase_34 AC 232 ms
78,528 KB
testcase_35 AC 203 ms
77,436 KB
testcase_36 WA -
testcase_37 AC 292 ms
78,860 KB
testcase_38 AC 115 ms
76,684 KB
testcase_39 AC 167 ms
76,896 KB
testcase_40 AC 147 ms
76,596 KB
testcase_41 AC 204 ms
77,792 KB
testcase_42 AC 120 ms
76,812 KB
testcase_43 AC 110 ms
76,604 KB
testcase_44 AC 128 ms
76,932 KB
testcase_45 AC 492 ms
81,512 KB
testcase_46 AC 468 ms
81,000 KB
testcase_47 AC 576 ms
82,068 KB
testcase_48 AC 476 ms
81,352 KB
testcase_49 AC 562 ms
81,744 KB
testcase_50 AC 445 ms
80,916 KB
testcase_51 AC 484 ms
81,552 KB
testcase_52 AC 494 ms
81,160 KB
testcase_53 AC 517 ms
81,788 KB
testcase_54 AC 526 ms
81,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

from heapq import heappop, heappush
H, W, T = map(int, input().split())
sy, sx = map(int, input().split())
gy, gx = map(int, input().split())
grid = [list(input()) for _ in range(H)]
sy -= 1
sx -= 1
gy -= 1
gx -= 1
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
def is_reachable(mid):
INF = 10**18
dist = [[INF]*W for _ in range(H)]
dist[sy][sx] = 0
heap = [(0, sy, sx)]
while heap:
d, y, x = heappop(heap)
if d > dist[y][x]:
continue
for i in range(4):
nx, ny = x + dx[i], y + dy[i]
if nx < 0 or W <= nx or ny < 0 or H <= ny:
continue
cost = mid if grid[ny][nx] == '#' else 1
if grid[ny][nx] != '0' and d + cost < dist[ny][nx]:
dist[ny][nx] = d + cost
heappush(heap, (d + cost, ny, nx))
return dist[gy][gx] <= T
left, right = 1, T
while right - left > 1:
mid = (left + right) // 2
if is_reachable(mid):
left = mid
else:
right = mid
print('Yes' if left != 1 else 'No')
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0