結果

問題 No.20 砂漠のオアシス
ユーザー dangodango
提出日時 2023-07-09 15:22:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 5,000 ms
コード長 741 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 78,816 KB
最終ジャッジ日時 2024-07-23 12:20:27
合計ジャッジ時間 3,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,748 KB
testcase_01 AC 40 ms
53,556 KB
testcase_02 AC 40 ms
53,408 KB
testcase_03 AC 85 ms
76,688 KB
testcase_04 AC 110 ms
76,896 KB
testcase_05 AC 266 ms
78,816 KB
testcase_06 AC 126 ms
77,816 KB
testcase_07 AC 195 ms
77,684 KB
testcase_08 AC 115 ms
77,016 KB
testcase_09 AC 185 ms
77,720 KB
testcase_10 AC 38 ms
53,308 KB
testcase_11 AC 38 ms
52,956 KB
testcase_12 AC 90 ms
76,556 KB
testcase_13 AC 90 ms
76,748 KB
testcase_14 AC 116 ms
76,756 KB
testcase_15 AC 105 ms
76,532 KB
testcase_16 AC 131 ms
77,372 KB
testcase_17 AC 123 ms
77,076 KB
testcase_18 AC 129 ms
77,220 KB
testcase_19 AC 131 ms
77,628 KB
testcase_20 AC 67 ms
69,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N, V, x, y = map(int, input().split())
O = (x - 1, y - 1)
G = (N - 1, N - 1)
L = [list(map(int, input().split())) for i in range(N)]
dxy = ((1, 0), (0, 1), (-1, 0), (0, -1))
D = [[0] * N for i in range(N)]
D[0][0] = -V
Q = []
heapq.heappush(Q, (-V, (0, 0), True))
while Q:
    v, h, f = heapq.heappop(Q)
    if h == G:
        print("YES")
        break
    for dx, dy in dxy:
        nx = h[0] + dx
        ny = h[1] + dy
        if 0 <= nx < N and 0 <= ny < N:
            n = (nx, ny)
            nv = v + L[ny][nx]
            if f and n == O:
                nv *= 2
                f = False
            if nv < D[ny][nx]:
                D[ny][nx] = nv
                heapq.heappush(Q, (nv, n, f))
else:
    print("NO")
0