結果

問題 No.20 砂漠のオアシス
ユーザー ntudantuda
提出日時 2024-11-04 22:36:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 1,107 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 80,620 KB
最終ジャッジ日時 2024-11-04 22:36:31
合計ジャッジ時間 4,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,144 KB
testcase_01 AC 38 ms
54,996 KB
testcase_02 AC 38 ms
54,204 KB
testcase_03 AC 137 ms
77,036 KB
testcase_04 AC 107 ms
76,744 KB
testcase_05 AC 278 ms
80,620 KB
testcase_06 AC 178 ms
78,812 KB
testcase_07 AC 261 ms
79,312 KB
testcase_08 AC 175 ms
78,564 KB
testcase_09 AC 230 ms
79,124 KB
testcase_10 AC 38 ms
53,764 KB
testcase_11 AC 37 ms
54,104 KB
testcase_12 AC 116 ms
77,300 KB
testcase_13 AC 116 ms
77,252 KB
testcase_14 AC 152 ms
77,348 KB
testcase_15 AC 142 ms
77,680 KB
testcase_16 AC 179 ms
78,048 KB
testcase_17 AC 174 ms
78,620 KB
testcase_18 AC 179 ms
77,632 KB
testcase_19 AC 180 ms
78,444 KB
testcase_20 AC 92 ms
76,380 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,V0):
    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 d2 >= V0:
                    continue
                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) < V:
    print("YES")
else:
    a = dijkstra(start,oasys,V)
    if a >= V:
        print("NO")
    else:
        b = dijkstra(oasys,goal,2 * (V-a))
        if b < 2 * (V - a):
            print("YES")
        else:
            print("NO")

0