結果

問題 No.34 砂漠の行商人
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-03 02:57:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 5,000 ms
コード長 792 bytes
コンパイル時間 747 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 110,464 KB
最終ジャッジ日時 2024-10-12 11:06:44
合計ジャッジ時間 4,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 53 ms
63,488 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 74 ms
76,416 KB
testcase_05 AC 80 ms
76,672 KB
testcase_06 AC 57 ms
66,688 KB
testcase_07 AC 87 ms
76,800 KB
testcase_08 AC 92 ms
78,196 KB
testcase_09 AC 143 ms
83,484 KB
testcase_10 AC 62 ms
72,448 KB
testcase_11 AC 76 ms
76,672 KB
testcase_12 AC 61 ms
68,736 KB
testcase_13 AC 304 ms
110,464 KB
testcase_14 AC 223 ms
95,988 KB
testcase_15 AC 54 ms
65,280 KB
testcase_16 AC 73 ms
76,532 KB
testcase_17 AC 49 ms
63,104 KB
testcase_18 AC 54 ms
64,128 KB
testcase_19 AC 120 ms
82,344 KB
testcase_20 AC 154 ms
87,356 KB
testcase_21 AC 56 ms
66,508 KB
testcase_22 AC 54 ms
66,640 KB
testcase_23 AC 53 ms
64,128 KB
testcase_24 AC 177 ms
89,588 KB
testcase_25 AC 63 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
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
from collections import deque
q = [(0, v, s)]
q = deque(q)
HP = [0]*(n*n)
HP[s] = v
while q:
    time, hp, i = q.popleft()
    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]
                q.append((time+1, hp-L[j], j))
print(-1)
0