結果

問題 No.34 砂漠の行商人
ユーザー convexineqconvexineq
提出日時 2021-01-17 02:55:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 651 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 711,628 KB
最終ジャッジ日時 2024-11-28 22:57:01
合計ジャッジ時間 31,353 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,924 KB
testcase_01 AC 49 ms
62,304 KB
testcase_02 AC 75 ms
82,200 KB
testcase_03 AC 45 ms
59,712 KB
testcase_04 AC 149 ms
113,996 KB
testcase_05 AC 157 ms
126,212 KB
testcase_06 AC 88 ms
91,048 KB
testcase_07 AC 211 ms
152,104 KB
testcase_08 AC 266 ms
180,432 KB
testcase_09 AC 2,046 ms
354,632 KB
testcase_10 AC 311 ms
225,800 KB
testcase_11 TLE -
testcase_12 AC 133 ms
114,536 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 112 ms
113,732 KB
testcase_16 AC 319 ms
145,928 KB
testcase_17 AC 147 ms
155,984 KB
testcase_18 AC 92 ms
84,368 KB
testcase_19 AC 1,744 ms
382,844 KB
testcase_20 AC 2,874 ms
484,432 KB
testcase_21 AC 194 ms
204,772 KB
testcase_22 AC 205 ms
198,724 KB
testcase_23 AC 127 ms
132,584 KB
testcase_24 AC 3,796 ms
494,260 KB
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,v,sy,sx,gy,gx = map(int,input().split())
b = [list(map(int,input().split())) for _ in range(n)]
v = min(v,1800)
INF = 5000
d = [[[INF]*1801 for _ in range(n)] for _ in range(n)]
d[sx-1][sy-1][v] = 0
gx -= 1; gy -= 1
from collections import deque
q = deque([(0,v,sx-1,sy-1)])
while q:
    dv,v,x,y = q.popleft()
    if x==gx and y==gy:
        print(dv)
        exit()
    for nx,ny in [(x+1,y),(x-1,y),(x,y-1),(x,y+1)]:
        if 0 <= nx < n and 0 <= ny < n:
            nv = v - b[nx][ny]
            if nv <= 0: continue
            if dv+1 < d[nx][ny][nv]:
                d[nx][ny][nv] = dv+1
                q.append((dv+1,nv,nx,ny))
print(-1)
0