結果

問題 No.20 砂漠のオアシス
ユーザー 👑 rin204rin204
提出日時 2022-07-04 14:51:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 990 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 80,500 KB
最終ジャッジ日時 2024-12-14 04:35:20
合計ジャッジ時間 3,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,068 KB
testcase_01 AC 45 ms
53,748 KB
testcase_02 AC 44 ms
53,016 KB
testcase_03 AC 83 ms
76,560 KB
testcase_04 AC 85 ms
76,476 KB
testcase_05 AC 276 ms
80,500 KB
testcase_06 AC 224 ms
77,820 KB
testcase_07 AC 228 ms
77,600 KB
testcase_08 AC 153 ms
76,908 KB
testcase_09 AC 226 ms
77,840 KB
testcase_10 AC 39 ms
52,912 KB
testcase_11 AC 39 ms
53,420 KB
testcase_12 AC 102 ms
76,660 KB
testcase_13 AC 110 ms
76,688 KB
testcase_14 AC 116 ms
77,180 KB
testcase_15 AC 115 ms
76,412 KB
testcase_16 AC 133 ms
76,896 KB
testcase_17 AC 128 ms
77,228 KB
testcase_18 AC 132 ms
77,120 KB
testcase_19 AC 133 ms
76,640 KB
testcase_20 AC 92 ms
76,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, v, oy, ox = 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)]


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