結果
| 問題 | No.34 砂漠の行商人 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-12-31 21:43:27 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 800 bytes | 
| コンパイル時間 | 197 ms | 
| コンパイル使用メモリ | 82,176 KB | 
| 実行使用メモリ | 269,736 KB | 
| 最終ジャッジ日時 | 2024-10-09 02:50:59 | 
| 合計ジャッジ時間 | 10,855 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 9 TLE * 1 -- * 16 | 
ソースコード
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 = [[0,M,sx*n+sy]]
while h:
    d,life,ind = heappop(h)
    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,[d+1,life-L[nx][ny],nind])
ans = inf
for i in range(M+1):
    ans = min(ans,dp[i][gx*n+gy])
if ans == inf:
    ans = -1
print(ans)
            
            
            
        