結果
問題 | No.34 砂漠の行商人 |
ユーザー | titia |
提出日時 | 2022-01-06 02:24:01 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 741 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 537,476 KB |
最終ジャッジ日時 | 2024-11-06 13:53:57 |
合計ジャッジ時間 | 22,984 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
59,520 KB |
testcase_01 | AC | 50 ms
60,672 KB |
testcase_02 | AC | 64 ms
68,608 KB |
testcase_03 | AC | 75 ms
76,672 KB |
testcase_04 | AC | 114 ms
81,664 KB |
testcase_05 | AC | 111 ms
81,916 KB |
testcase_06 | AC | 64 ms
70,656 KB |
testcase_07 | AC | 140 ms
84,992 KB |
testcase_08 | AC | 170 ms
90,880 KB |
testcase_09 | AC | 4,973 ms
342,776 KB |
testcase_10 | AC | 4,850 ms
391,208 KB |
testcase_11 | MLE | - |
testcase_12 | AC | 114 ms
81,896 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 | -- | - |
ソースコード
from collections import deque N,V,x,y,zz,ww=map(int,input().split()) MAP=[list(map(int,input().split())) for i in range(N)] x,y=y,x zz,ww=ww,zz V=min(V,2000) x-=1 y-=1 zz-=1 ww-=1 DP=[[1<<30]*(N*N) for i in range(V+1)] DP[V][x*N+y]=0 Q=deque() Q.append((0,V,x*N+y)) while Q: now,power,xy=Q.popleft() x=xy//N y=xy%N for z,w in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]: if 0<=z<N and 0<=w<N: nec=z*N+w dec=MAP[z][w] if power-dec>0 and DP[power-dec][nec]>now+1: DP[power-dec][nec]=now+1 Q.append((now+1,power-dec,nec)) ANS=1<<30 for i in range(V+1): ANS=min(ANS,DP[i][zz*N+ww]) if ANS==1<<30: print(-1) else: print(ANS)