結果

問題 No.20 砂漠のオアシス
ユーザー KudeKude
提出日時 2020-09-04 05:50:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 800 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,604 KB
最終ジャッジ日時 2024-05-03 17:13:01
合計ジャッジ時間 3,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,888 KB
testcase_01 AC 41 ms
54,916 KB
testcase_02 AC 41 ms
53,484 KB
testcase_03 AC 93 ms
76,876 KB
testcase_04 AC 138 ms
78,196 KB
testcase_05 AC 266 ms
82,136 KB
testcase_06 AC 135 ms
81,408 KB
testcase_07 AC 254 ms
81,356 KB
testcase_08 AC 120 ms
80,512 KB
testcase_09 AC 233 ms
82,604 KB
testcase_10 WA -
testcase_11 AC 40 ms
52,736 KB
testcase_12 WA -
testcase_13 AC 112 ms
77,128 KB
testcase_14 AC 136 ms
78,080 KB
testcase_15 AC 136 ms
77,652 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 159 ms
78,444 KB
testcase_20 AC 95 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, v, ox, oy = map(int, input().split())
ox -= 1
oy -= 1
l = [list(map(int, input().split())) for _ in range(n)]

INF = 10 ** 18
from heapq import heappush, heappop
dx = [1,0,-1,0]
dy = [0,1,0,-1]
dp = [[[0, 0] for _ in range(n)] for _ in range(n)]
q = [(-v, 0, 0, 0)]
while q:
    vit, x, y, used = heappop(q)
    vit = -vit
    if vit < dp[x][y][used]:
        continue
    for k in range(4):
        nx, ny = x + dx[k], y + dy[k]
        if not (0 <= nx < n and 0 <= ny < n):
            continue
        nv = vit - l[nx][ny]
        if nv > dp[nx][ny][used]:
            dp[nx][ny][used] = nv
            heappush(q, (-nv, nx, ny, used))
    if not used and (x, y) == (ox, oy):
        dp[x][y][1] = vit * 2
        heappush(q, (-vit * 2, x, y, 1))
print('YES' if max(dp[n-1][n-1]) > 0 else 'NO')
0