結果
問題 | No.34 砂漠の行商人 |
ユーザー | vwxyz |
提出日時 | 2023-12-19 06:23:33 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 755 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 82,356 KB |
実行使用メモリ | 608,828 KB |
最終ジャッジ日時 | 2024-09-27 08:38:41 |
合計ジャッジ時間 | 25,783 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
63,384 KB |
testcase_01 | AC | 54 ms
63,960 KB |
testcase_02 | AC | 96 ms
77,860 KB |
testcase_03 | AC | 87 ms
77,496 KB |
testcase_04 | AC | 672 ms
154,744 KB |
testcase_05 | AC | 965 ms
191,456 KB |
testcase_06 | AC | 338 ms
104,772 KB |
testcase_07 | AC | 1,948 ms
277,248 KB |
testcase_08 | AC | 3,513 ms
318,080 KB |
testcase_09 | AC | 2,683 ms
302,248 KB |
testcase_10 | AC | 3,900 ms
375,292 KB |
testcase_11 | MLE | - |
testcase_12 | AC | 691 ms
161,548 KB |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import sys readline=sys.stdin.readline from collections import deque N,V,Sy,Sx,Gy,Gx=map(int,readline().split()) Sx-=1;Sy-=1;Gx-=1;Gy-=1 L=[list(map(int,readline().split())) for x in range(N)] queue=deque([(0,0,Sx,Sy)]) inf=1<<60 dist=[[inf]*N*N for v in range(18*N)] dist[0][Sx*N+Sy]=0 while queue: d,v,x,y=queue.popleft() if dist[v][x*N+y]<d: continue for dx,dy in ((0,1),(1,0),(0,-1),(-1,0)): xx=x+dx yy=y+dy if 0<=xx<N and 0<=yy<N: vv=v+L[xx][yy] if vv<18*N and dist[vv][xx*N+yy]>d+1: dist[vv][xx*N+yy]=d+1 queue.append((d+1,vv,xx,yy)) ans=inf for v in range(18*N): if v<V: ans=min(ans,dist[v][Gx*N+Gy]) if ans==inf: ans=-1 print(ans)