結果

問題 No.20 砂漠のオアシス
ユーザー colognecologne
提出日時 2022-01-22 13:28:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 5,000 ms
コード長 985 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-11-27 09:54:50
合計ジャッジ時間 5,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 48 ms
58,624 KB
testcase_03 AC 126 ms
76,484 KB
testcase_04 AC 148 ms
77,196 KB
testcase_05 AC 427 ms
82,560 KB
testcase_06 AC 164 ms
78,208 KB
testcase_07 AC 557 ms
81,664 KB
testcase_08 AC 205 ms
78,592 KB
testcase_09 AC 493 ms
82,096 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 38 ms
52,736 KB
testcase_12 AC 131 ms
76,616 KB
testcase_13 AC 127 ms
77,020 KB
testcase_14 AC 146 ms
77,036 KB
testcase_15 AC 142 ms
76,992 KB
testcase_16 AC 209 ms
77,876 KB
testcase_17 AC 174 ms
77,424 KB
testcase_18 AC 180 ms
77,372 KB
testcase_19 AC 206 ms
77,496 KB
testcase_20 AC 114 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq

input = sys.stdin.readline


def main():
    N, V, Ox, Oy = map(int, input().split())
    L = [list(map(int, input().split())) for i in range(N)]

    vis = [[[False]*N for i in range(N)] for i in range(2)]
    Q = [(-V, 0, 0, False)]

    while len(Q) > 0:
        hp, r, c, oa = heapq.heappop(Q)
        hp = -hp
        if vis[1 if oa else 0][r][c]:
            continue
        if r == c == N-1:
            print('YES')
            return
        vis[1 if oa else 0][r][c] = True
        for dx, dy in [(-1, 0), (1, 0), (0, -1), (0, 1)]:
            nr, nc = r + dx, c + dy
            if 0 <= nr < N and 0 <= nc < N:
                nhp = hp - L[nr][nc]
                if nhp > 0:
                    noa = oa
                    if not oa and (nr, nc) == (Oy-1, Ox-1):
                        noa = True
                        nhp *= 2
                    heapq.heappush(Q, (-nhp, nr, nc, noa))
    print('NO')


if __name__ == '__main__':
    main()
0