結果

問題 No.34 砂漠の行商人
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-03 02:53:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 855 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 193,084 KB
最終ジャッジ日時 2024-10-12 11:01:15
合計ジャッジ時間 15,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,100 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 92 ms
76,284 KB
testcase_03 AC 43 ms
53,720 KB
testcase_04 AC 323 ms
78,948 KB
testcase_05 AC 294 ms
78,548 KB
testcase_06 AC 94 ms
76,584 KB
testcase_07 AC 473 ms
80,616 KB
testcase_08 AC 647 ms
84,156 KB
testcase_09 AC 3,529 ms
193,084 KB
testcase_10 AC 447 ms
82,144 KB
testcase_11 AC 1,244 ms
93,972 KB
testcase_12 AC 181 ms
77,580 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, v, sx, sy, gx, gy = map(int, input().split())
sx, sy = sx-1, sy-1
gx, gy = gx-1, gy-1
L = []
for i in range(n):
    l = list(map(int, input().split()))
    L += l
s = sy*n+sx
g = gy*n+gx
import heapq
hq = [(0, v, s)]
HP = [0]*(n*n)
HP[s] = v
heapq.heapify(hq)
visit = [False]*(n*n)
while hq:
    time, hp, i = heapq.heappop(hq)
    y, x = divmod(i, n)
    if i == g:
        print(time)
        exit()
    for dy, dx in (-1, 0), (1, 0), (0, 1), (0, -1):
        ny, nx = y+dy, x+dx
        if 0 <= ny < n and 0 <= nx < n:
            j = ny*n+nx
            if hp-L[j] <= 0:
                continue
            if hp-L[j] > HP[j]:
                HP[j] = hp-L[j]
                heapq.heappush(hq, (time+1, hp-L[j], j))
print(-1)
0