結果

問題 No.34 砂漠の行商人
ユーザー maspymaspy
提出日時 2020-03-21 02:37:39
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 971 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 851,072 KB
最終ジャッジ日時 2024-12-16 05:01:58
合計ジャッジ時間 23,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,400 KB
testcase_01 AC 57 ms
61,824 KB
testcase_02 AC 99 ms
99,456 KB
testcase_03 AC 68 ms
82,432 KB
testcase_04 AC 266 ms
263,408 KB
testcase_05 AC 305 ms
331,520 KB
testcase_06 AC 184 ms
216,448 KB
testcase_07 AC 439 ms
469,184 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 AC 297 ms
267,444 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 295 ms
291,668 KB
testcase_16 AC 298 ms
287,824 KB
testcase_17 AC 368 ms
504,348 KB
testcase_18 AC 90 ms
114,208 KB
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 AC 304 ms
373,148 KB
testcase_24 MLE -
testcase_25 AC 383 ms
492,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque

N, V, Sy, Sx, Gy, Gx = map(int, readline().split())
L = tuple(map(int, read().split()))
Sx -= 1
Sy -= 1
Gx -= 1
Gy -= 1
S = Sx * N + Sy
G = Gx * N + Gy

INF = 1000
M = N * N
dist = [INF] * (M * 10001)
start = M * V + S
dist[start] = 0
q = deque([start])

answer = INF
while q:
    x = q.popleft()
    d = dist[x]
    V, xy = divmod(x, M)
    x, y = divmod(xy, N)
    d += 1
    for dx, dy in ((1, 0), (-1, 0), (0, 1), (0, -1)):
        x1 = x + dx
        y1 = y + dy
        if not ((0 <= x1 < N) and (0 <= y1 < N)):
            continue
        xy1 = x1 * N + y1
        V1 = V - L[xy1]
        if V1 <= 0:
            continue
        if xy1 == G:
            print(d)
            exit()
        v = M * V1 + xy1
        if dist[v] == INF:
            dist[v] = d
            q.append(v)

print(-1)
0