結果

問題 No.34 砂漠の行商人
ユーザー kept1994kept1994
提出日時 2022-05-07 17:42:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,648 ms / 5,000 ms
コード長 1,365 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 428,192 KB
最終ジャッジ日時 2024-07-06 23:03:11
合計ジャッジ時間 7,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,908 KB
testcase_01 AC 40 ms
61,828 KB
testcase_02 AC 65 ms
82,128 KB
testcase_03 AC 37 ms
54,300 KB
testcase_04 AC 136 ms
114,940 KB
testcase_05 AC 141 ms
126,856 KB
testcase_06 AC 85 ms
103,936 KB
testcase_07 AC 207 ms
152,692 KB
testcase_08 AC 255 ms
181,884 KB
testcase_09 AC 40 ms
61,664 KB
testcase_10 AC 39 ms
61,768 KB
testcase_11 AC 40 ms
61,224 KB
testcase_12 AC 119 ms
115,696 KB
testcase_13 AC 42 ms
62,132 KB
testcase_14 AC 41 ms
61,648 KB
testcase_15 AC 39 ms
61,316 KB
testcase_16 AC 41 ms
60,932 KB
testcase_17 AC 43 ms
61,556 KB
testcase_18 AC 39 ms
54,500 KB
testcase_19 AC 1,469 ms
374,788 KB
testcase_20 AC 2,648 ms
428,192 KB
testcase_21 AC 184 ms
203,688 KB
testcase_22 AC 40 ms
62,256 KB
testcase_23 AC 39 ms
60,260 KB
testcase_24 AC 40 ms
62,672 KB
testcase_25 AC 243 ms
167,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
from collections import deque
MOD = 998244353

input = sys.stdin.readline

powerMax = 99 * 2 * 9
INF = 10 ** 16

def main():
    N, V, Sx, Sy, Gx, Gy = map(int, input().split())
    power_init = min(V, powerMax)
    G = [list(map(int, input().split())) for _ in range(N)]
    if V > (abs(Sx-Gx) + abs(Sy-Gy)) * 9:
        print(abs(Sx-Gx) + abs(Sy-Gy))
        return
    
    startY = Sy - 1
    startX = Sx - 1
    goalY = Gy - 1
    goalX = Gx - 1
    q = deque()
    dist = [[[INF] * (powerMax + 1) for _ in range(N)] for _ in range(N)]
    q.append((0, startY, startX, power_init))
    dist[startY][startX][power_init] = 0
    while q:
        min_cost, nowY, nowX, now_power = q.popleft()
        if nowY == goalY and nowX == goalX:
            print(min_cost)
            return
        for dx, dy in [(0, 1), (1, 0), (-1, 0), (0, -1)]:
            nexty = nowY + dy
            nextx = nowX + dx
            if nexty < 0 or nextx < 0 or nexty >= N or nextx >= N:
                continue
            next_power = now_power - G[nexty][nextx]
            if next_power <= 0 or dist[nexty][nextx][next_power] != INF:
                continue
            q.append((min_cost + 1, nexty, nextx, next_power))
            dist[nexty][nextx][next_power] = min_cost + 1
    print(-1)
    return

if __name__ == '__main__':
    main()
0