結果
問題 | No.34 砂漠の行商人 |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2021-12-31 22:00:13 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 819 bytes |
コンパイル時間 | 790 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 255,584 KB |
最終ジャッジ日時 | 2024-10-09 03:26:31 |
合計ジャッジ時間 | 11,644 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,456 KB |
testcase_01 | AC | 46 ms
59,264 KB |
testcase_02 | AC | 120 ms
76,964 KB |
testcase_03 | AC | 150 ms
76,768 KB |
testcase_04 | AC | 624 ms
89,600 KB |
testcase_05 | AC | 579 ms
89,040 KB |
testcase_06 | AC | 120 ms
77,136 KB |
testcase_07 | AC | 914 ms
99,156 KB |
testcase_08 | AC | 1,266 ms
110,884 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
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 heapq import heappush,heappop n,v,sy,sx,gy,gx = map(int,input().split()) L = [list(map(int,input().split())) for i in range(n)] sx,sy,gx,gy = sx-1,sy-1,gx-1,gy-1 inf = 10**10 M = min(v,2000) dp = [[inf]*(n*n) for i in range(M+1)] dp[M][sx*n+sy] = 0 h = [[-M,0,sx*n+sy]] while h: life,d,ind = heappop(h) life *= -1 x,y = divmod(ind,n) if dp[life][ind] != d: continue for (i,j) in ((1,0),(-1,0),(0,1),(0,-1)): nx = x+i ny = y+j if 0 <= nx < n and 0 <= ny < n: nind = nx*n+ny if life > L[nx][ny] and dp[life-L[nx][ny]][nind] > d+1: dp[life-L[nx][ny]][nind] = d+1 heappush(h,[-(life-L[nx][ny]),d+1,nind]) ans = inf for i in range(M+1): ans = min(ans,dp[i][gx*n+gy]) if ans == inf: ans = -1 print(ans)