結果

問題 No.20 砂漠のオアシス
ユーザー 👑 rin204rin204
提出日時 2022-07-04 14:50:00
言語 PyPy3
(7.3.13)
結果
WA  
実行時間 -
コード長 1,028 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 87,136 KB
実行使用メモリ 79,984 KB
最終ジャッジ日時 2023-08-20 21:58:17
合計ジャッジ時間 4,669 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,320 KB
testcase_01 AC 77 ms
71,112 KB
testcase_02 AC 78 ms
71,252 KB
testcase_03 AC 120 ms
78,096 KB
testcase_04 AC 122 ms
77,680 KB
testcase_05 AC 207 ms
79,984 KB
testcase_06 AC 264 ms
79,680 KB
testcase_07 AC 270 ms
79,484 KB
testcase_08 AC 188 ms
78,716 KB
testcase_09 AC 262 ms
79,552 KB
testcase_10 WA -
testcase_11 AC 78 ms
71,244 KB
testcase_12 WA -
testcase_13 AC 140 ms
77,808 KB
testcase_14 AC 157 ms
78,612 KB
testcase_15 AC 146 ms
78,344 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 171 ms
78,120 KB
testcase_20 AC 124 ms
77,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, v, ox, oy = map(int, input().split())
L = [list(map(int, input().split())) for _ in range(n)]
inf = 1 << 30
directions = [(-1, 0), (1, 0), (0, -1), (0, 1)]

if v <= 0:
    print("NO")
    exit()
def dijkstra(si, sj):
    dist = [[inf] * n for _ in range(n)]
    dist[si][sj] = 0
    hq = [(0, si, sj)]
    while hq:
        d, i, j = heappop(hq)
        if dist[i][j] < d:
            continue
        for di, dj in directions:
            ni = i + di
            nj = j + dj
            if ni == -1 or nj == -1 or ni == n or nj == n:
                continue
            tmp = d + L[ni][nj]
            if tmp < dist[ni][nj]:
                dist[ni][nj] = tmp
                heappush(hq, (tmp, ni, nj))
    return dist

dist = dijkstra(0, 0)
if dist[-1][-1] <= v:
    print("YES")
    exit()
if ox == oy == 0:
    print("NO")
    exit()
ox -= 1
oy -= 1
v -= dist[ox][oy]
if v <= 0:
    print("NO")
    exit()
v *= 2
dist = dijkstra(ox, oy)
if dist[-1][-1] <= v:
    print("YES")
else:
    print("NO")
0