結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,816 KB
testcase_01 AC 35 ms
53,036 KB
testcase_02 AC 35 ms
54,012 KB
testcase_03 AC 33 ms
53,800 KB
testcase_04 AC 34 ms
53,616 KB
testcase_05 AC 33 ms
54,360 KB
testcase_06 WA -
testcase_07 AC 35 ms
54,264 KB
testcase_08 WA -
testcase_09 AC 34 ms
53,700 KB
testcase_10 AC 35 ms
53,748 KB
testcase_11 AC 34 ms
53,472 KB
testcase_12 WA -
testcase_13 AC 34 ms
53,944 KB
testcase_14 WA -
testcase_15 AC 34 ms
53,532 KB
testcase_16 WA -
testcase_17 AC 33 ms
53,476 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 35 ms
53,604 KB
testcase_21 AC 36 ms
53,012 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 33 ms
53,296 KB
testcase_25 AC 177 ms
77,236 KB
testcase_26 AC 172 ms
77,552 KB
testcase_27 AC 256 ms
79,072 KB
testcase_28 AC 107 ms
76,764 KB
testcase_29 AC 184 ms
77,376 KB
testcase_30 AC 147 ms
77,524 KB
testcase_31 AC 182 ms
77,872 KB
testcase_32 AC 83 ms
76,724 KB
testcase_33 AC 164 ms
77,608 KB
testcase_34 AC 204 ms
78,704 KB
testcase_35 AC 182 ms
77,484 KB
testcase_36 WA -
testcase_37 AC 252 ms
79,000 KB
testcase_38 AC 101 ms
76,672 KB
testcase_39 AC 148 ms
77,056 KB
testcase_40 AC 132 ms
76,968 KB
testcase_41 AC 178 ms
77,304 KB
testcase_42 AC 107 ms
76,696 KB
testcase_43 AC 100 ms
76,404 KB
testcase_44 AC 111 ms
76,984 KB
testcase_45 AC 439 ms
81,552 KB
testcase_46 AC 399 ms
81,220 KB
testcase_47 AC 491 ms
82,548 KB
testcase_48 AC 415 ms
81,452 KB
testcase_49 AC 497 ms
82,204 KB
testcase_50 AC 383 ms
80,972 KB
testcase_51 AC 429 ms
81,492 KB
testcase_52 AC 425 ms
81,488 KB
testcase_53 AC 458 ms
81,856 KB
testcase_54 AC 455 ms
81,684 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

# Check if the start or goal position is '0' right after input
if grid[sy][sx] == '0' or grid[gy][gx] == '0':
    print('No')
    exit()

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