結果
問題 | No.34 砂漠の行商人 |
ユーザー | titia |
提出日時 | 2022-01-06 02:38:47 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 757 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 64,792 KB |
最終ジャッジ日時 | 2024-11-06 14:11:05 |
合計ジャッジ時間 | 13,587 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 66 ms
10,880 KB |
testcase_03 | AC | 30 ms
11,136 KB |
testcase_04 | AC | 814 ms
14,208 KB |
testcase_05 | AC | 821 ms
14,580 KB |
testcase_06 | AC | 70 ms
10,880 KB |
testcase_07 | AC | 1,361 ms
16,484 KB |
testcase_08 | AC | 1,907 ms
20,360 KB |
testcase_09 | AC | 32 ms
10,752 KB |
testcase_10 | AC | 32 ms
10,752 KB |
testcase_11 | AC | 32 ms
10,752 KB |
testcase_12 | AC | 521 ms
13,952 KB |
testcase_13 | AC | 32 ms
10,752 KB |
testcase_14 | AC | 32 ms
10,752 KB |
testcase_15 | AC | 31 ms
10,880 KB |
testcase_16 | AC | 30 ms
10,752 KB |
testcase_17 | AC | 139 ms
64,792 KB |
testcase_18 | AC | 30 ms
10,752 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import sys input = sys.stdin.readline 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)] if V>1800: print(abs(x-zz)+abs(y-ww)) exit() x,y=y,x zz,ww=ww,zz x-=1 y-=1 zz-=1 ww-=1 DP=[300]*(N*N*(V+1)) DP[V*(N*N)+x*N+y]=0 Q=deque() Q.append((0,V,x*N+y)) while Q: now,power,xy=Q.popleft() if xy==zz*N+ww: print(now) break 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)*N*N+nec]>now+1: DP[(power-dec)*N*N+nec]=now+1 Q.append((now+1,power-dec,nec)) else: print(-1)