結果

問題 No.20 砂漠のオアシス
ユーザー ntudantuda
提出日時 2024-11-04 21:08:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,652 KB
最終ジャッジ日時 2024-11-04 21:08:18
合計ジャッジ時間 5,052 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,540 KB
testcase_01 AC 39 ms
53,636 KB
testcase_02 AC 48 ms
61,944 KB
testcase_03 AC 68 ms
70,680 KB
testcase_04 AC 105 ms
76,752 KB
testcase_05 AC 102 ms
77,436 KB
testcase_06 AC 112 ms
77,196 KB
testcase_07 WA -
testcase_08 AC 378 ms
77,416 KB
testcase_09 AC 402 ms
77,228 KB
testcase_10 AC 39 ms
53,096 KB
testcase_11 AC 40 ms
53,928 KB
testcase_12 AC 83 ms
76,504 KB
testcase_13 AC 109 ms
76,652 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 127 ms
76,632 KB
testcase_18 WA -
testcase_19 AC 265 ms
76,704 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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
oasys = (OX,OY)
M = [[0] * N for _ in range(N)]
M[0][0] = V
dir = [[1, 0], [0, 1], [0, -1], [-1, 0]]
goal = (N-1,N-1)
Q = [(-V,(0,0))]
oa = True
while Q:
    d, (x, y) = Q.pop()
    d = -d
    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 <= 0:
                continue
            #print(d, (x1, y1),d2)
            if M[x1][y1] < d2:
                M[x1][y1] = d2
                if oa and (x1,y1) == oasys:
                    oa = False
                    M[x1][y1] *= 2
                    #print("o", M[x1][y1])
                if (x1,y1) == goal and M[x1][y1] > 0:
                    print("YES")
                    exit()
                heappush(Q,(-M[x1][y1],(x1, y1)))
print("NO")
0