結果

問題 No.34 砂漠の行商人
ユーザー convexineqconvexineq
提出日時 2021-01-17 02:54:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 652 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 745,788 KB
最終ジャッジ日時 2024-11-28 22:51:33
合計ジャッジ時間 31,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,600 KB
testcase_01 AC 48 ms
61,632 KB
testcase_02 AC 73 ms
82,824 KB
testcase_03 AC 45 ms
60,268 KB
testcase_04 AC 150 ms
117,716 KB
testcase_05 AC 163 ms
131,656 KB
testcase_06 AC 99 ms
106,840 KB
testcase_07 AC 218 ms
159,952 KB
testcase_08 AC 273 ms
191,460 KB
testcase_09 AC 2,047 ms
368,312 KB
testcase_10 AC 325 ms
241,944 KB
testcase_11 TLE -
testcase_12 AC 135 ms
118,436 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 109 ms
114,056 KB
testcase_16 AC 313 ms
149,692 KB
testcase_17 AC 146 ms
159,312 KB
testcase_18 AC 90 ms
85,316 KB
testcase_19 AC 1,707 ms
398,228 KB
testcase_20 MLE -
testcase_21 AC 215 ms
227,836 KB
testcase_22 AC 215 ms
210,648 KB
testcase_23 AC 133 ms
136,816 KB
testcase_24 MLE -
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 = 10**9
d = [[[INF]*2001 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