結果
問題 | No.34 砂漠の行商人 |
ユーザー | vwxyz |
提出日時 | 2023-12-19 06:22:22 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 768 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 598,144 KB |
最終ジャッジ日時 | 2024-09-27 08:38:06 |
合計ジャッジ時間 | 32,522 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
62,912 KB |
testcase_01 | AC | 56 ms
63,360 KB |
testcase_02 | AC | 114 ms
78,680 KB |
testcase_03 | AC | 95 ms
78,168 KB |
testcase_04 | AC | 928 ms
158,720 KB |
testcase_05 | AC | 1,327 ms
197,120 KB |
testcase_06 | AC | 398 ms
107,864 KB |
testcase_07 | AC | 2,651 ms
278,484 KB |
testcase_08 | AC | 4,894 ms
337,424 KB |
testcase_09 | AC | 3,643 ms
319,804 KB |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | AC | 942 ms
164,900 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 for x in range(N)] for v in range(18*N)] dist[0][Sx][Sy]=0 while queue: d,v,x,y=queue.popleft() if dist[v][x][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][yy]>d+1: dist[vv][xx][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][Gy]) if ans==inf: ans=-1 print(ans)