結果

問題 No.34 砂漠の行商人
ユーザー roarisroaris
提出日時 2020-07-25 23:04:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,841 ms / 5,000 ms
コード長 904 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 300,460 KB
最終ジャッジ日時 2024-06-27 18:15:58
合計ジャッジ時間 16,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 45 ms
59,264 KB
testcase_02 AC 56 ms
67,840 KB
testcase_03 AC 72 ms
76,544 KB
testcase_04 AC 123 ms
81,664 KB
testcase_05 AC 112 ms
82,176 KB
testcase_06 AC 61 ms
70,912 KB
testcase_07 AC 148 ms
86,528 KB
testcase_08 AC 191 ms
92,416 KB
testcase_09 AC 45 ms
60,160 KB
testcase_10 AC 45 ms
60,288 KB
testcase_11 AC 45 ms
60,800 KB
testcase_12 AC 112 ms
82,176 KB
testcase_13 AC 44 ms
60,416 KB
testcase_14 AC 45 ms
60,800 KB
testcase_15 AC 43 ms
59,904 KB
testcase_16 AC 45 ms
59,904 KB
testcase_17 AC 3,537 ms
287,208 KB
testcase_18 AC 43 ms
54,144 KB
testcase_19 AC 1,856 ms
288,280 KB
testcase_20 AC 3,665 ms
300,460 KB
testcase_21 AC 72 ms
80,512 KB
testcase_22 AC 3,841 ms
299,176 KB
testcase_23 AC 44 ms
59,904 KB
testcase_24 AC 45 ms
60,288 KB
testcase_25 AC 271 ms
106,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque

def bfs():
    dist = [[[-1]*(V+1) for _ in range(N)] for _ in range(N)]
    dist[Sx][Sy][V] = 0
    q = deque([(Sx, Sy, V)])
    
    while q:
        x, y, v = q.popleft()
        
        for nx, ny in [(x-1, y), (x+1, y), (x, y-1), (x, y+1)]:
            if 0<=nx<N and 0<=ny<N and v-L[nx][ny]>0 and dist[nx][ny][v-L[nx][ny]]==-1:
                dist[nx][ny][v-L[nx][ny]] = dist[x][y][v]+1
                q.append((nx, ny, v-L[nx][ny]))
    
    return dist

N, V, Sy, Sx, Gy, Gx = map(int, input().split())
Sy -= 1
Sx -= 1
Gy -= 1
Gx -= 1
L = [list(map(int, input().split())) for _ in range(N)]

if V>=1800:
    print(abs(Sx-Gx)+abs(Sy-Gy))
    exit()

dist = bfs()
ans = 10**18

for i in range(V+1):
    if dist[Gx][Gy][i]!=-1:
        ans = min(ans, dist[Gx][Gy][i])
        
if ans==10**18:
    print(-1)
else:
    print(ans)
0