結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,660 KB
testcase_01 AC 37 ms
53,296 KB
testcase_02 AC 40 ms
54,064 KB
testcase_03 WA -
testcase_04 AC 38 ms
53,212 KB
testcase_05 AC 38 ms
53,764 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,160 KB
testcase_08 WA -
testcase_09 AC 38 ms
54,352 KB
testcase_10 AC 39 ms
53,764 KB
testcase_11 AC 41 ms
53,604 KB
testcase_12 WA -
testcase_13 AC 41 ms
54,060 KB
testcase_14 WA -
testcase_15 AC 39 ms
53,608 KB
testcase_16 WA -
testcase_17 AC 39 ms
53,436 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
53,248 KB
testcase_21 AC 39 ms
53,504 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
53,312 KB
testcase_25 AC 205 ms
77,252 KB
testcase_26 AC 198 ms
77,216 KB
testcase_27 AC 289 ms
79,076 KB
testcase_28 AC 120 ms
76,892 KB
testcase_29 AC 212 ms
77,144 KB
testcase_30 AC 164 ms
76,856 KB
testcase_31 AC 207 ms
77,388 KB
testcase_32 AC 91 ms
76,288 KB
testcase_33 AC 179 ms
77,672 KB
testcase_34 AC 223 ms
78,712 KB
testcase_35 AC 196 ms
77,504 KB
testcase_36 WA -
testcase_37 AC 288 ms
79,004 KB
testcase_38 AC 110 ms
76,368 KB
testcase_39 AC 160 ms
76,900 KB
testcase_40 AC 142 ms
76,716 KB
testcase_41 AC 203 ms
77,472 KB
testcase_42 AC 116 ms
76,448 KB
testcase_43 AC 108 ms
76,380 KB
testcase_44 AC 116 ms
76,720 KB
testcase_45 AC 480 ms
81,344 KB
testcase_46 AC 456 ms
81,040 KB
testcase_47 AC 558 ms
81,804 KB
testcase_48 AC 465 ms
81,316 KB
testcase_49 AC 549 ms
82,040 KB
testcase_50 AC 435 ms
81,064 KB
testcase_51 AC 482 ms
81,712 KB
testcase_52 AC 470 ms
81,768 KB
testcase_53 AC 511 ms
81,692 KB
testcase_54 AC 508 ms
81,648 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 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')


0