結果

問題 No.20 砂漠のオアシス
ユーザー ntudantuda
提出日時 2024-11-04 22:33:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 1,032 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 82,444 KB
最終ジャッジ日時 2024-11-04 22:33:41
合計ジャッジ時間 4,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,500 KB
testcase_01 AC 44 ms
53,620 KB
testcase_02 AC 40 ms
55,080 KB
testcase_03 AC 129 ms
77,032 KB
testcase_04 AC 103 ms
76,444 KB
testcase_05 AC 318 ms
82,444 KB
testcase_06 AC 263 ms
79,480 KB
testcase_07 AC 280 ms
79,048 KB
testcase_08 AC 194 ms
78,168 KB
testcase_09 AC 250 ms
79,376 KB
testcase_10 AC 39 ms
53,160 KB
testcase_11 AC 39 ms
53,540 KB
testcase_12 AC 118 ms
77,540 KB
testcase_13 AC 139 ms
77,560 KB
testcase_14 AC 151 ms
77,740 KB
testcase_15 AC 149 ms
77,416 KB
testcase_16 AC 180 ms
78,056 KB
testcase_17 AC 170 ms
78,260 KB
testcase_18 AC 183 ms
77,748 KB
testcase_19 AC 181 ms
78,100 KB
testcase_20 AC 95 ms
76,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
N,V,OY,OX = map(int,input().split())
L= [list(map(int,input().split())) for _ in range(N)]
OX -= 1
OY -= 1
start = (0,0)
goal = (N-1,N-1)
oasys = (OX,OY)
INF = 10 ** 6
dir = [[1, 0], [0, 1], [0, -1], [-1, 0]]

def dijkstra(B,E):
    M = [[INF] * N for _ in range(N)]
    M[B[0]][B[1]] = 0
    Q = [(0,B)]
    while Q:
        d, (x, y) = heappop(Q)
        #if M[x][y] > d:
        #    continue
        for xd, yd in dir:
            x1 = x + xd
            y1 = y + yd
            if 0 <= x1 < N and 0 <= y1 < N:
                d2 = d + L[x1][y1]
                if M[x1][y1] > d2:
                    M[x1][y1] = d2
                    if (x1,y1) == E:
                        return M[x1][y1]
                    heappush(Q,(d2,(x1, y1)))
    return INF

if dijkstra(start,goal) < V:
    print("YES")
else:
    a = dijkstra(start,oasys)
    if a >= V:
        print("NO")
    else:
        b = dijkstra(oasys,goal)
        if b < 2 * (V - a):
            print("YES")
        else:
            print("NO")

0