結果

問題 No.20 砂漠のオアシス
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-10-25 14:23:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 903 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,320 KB
最終ジャッジ日時 2024-07-19 16:06:46
合計ジャッジ時間 4,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 53 ms
11,136 KB
testcase_04 AC 77 ms
11,392 KB
testcase_05 AC 454 ms
19,320 KB
testcase_06 AC 90 ms
11,904 KB
testcase_07 AC 750 ms
19,268 KB
testcase_08 AC 202 ms
12,932 KB
testcase_09 AC 572 ms
18,560 KB
testcase_10 WA -
testcase_11 AC 30 ms
10,880 KB
testcase_12 WA -
testcase_13 AC 54 ms
11,136 KB
testcase_14 AC 93 ms
11,904 KB
testcase_15 AC 80 ms
11,520 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 172 ms
12,672 KB
testcase_20 AC 46 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
from collections import defaultdict

N, V, X, Y = map(int, input().split())
X -= 1
Y -= 1

L = [list(map(int, input().split())) for _ in range(N)]

que = [(-V, 0, 0, False)]  # life, x, y, usedO
maxLife = defaultdict(lambda : -float('inf'))

while que:
    life, x, y, usedO = heappop(que)
    life *= -1

    if x == X and y == Y and not usedO:
        life *= 2
        usedO = True

    if life <= 0:
        continue

    if x == y == N - 1:
        print('YES')
        exit()

    if maxLife[(x, y, usedO)] >= life:
        continue
    maxLife[(x, y, usedO)] = life

    for nx in [x - 1, x + 1]:
        if 0 <= nx < N and life - L[nx][y] > 0:
            heappush(que, (-(life - L[nx][y]), nx, y, usedO))

    for ny in [y - 1, y + 1]:
        if 0 <= ny < N and life - L[x][ny] > 0:
            heappush(que, (-(life - L[x][ny]), x, ny, usedO))

print('NO')
0