結果

問題 No.34 砂漠の行商人
ユーザー kept1994kept1994
提出日時 2022-05-07 17:43:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,550 ms / 5,000 ms
コード長 1,565 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 413,780 KB
最終ジャッジ日時 2024-07-06 23:04:09
合計ジャッジ時間 6,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,168 KB
testcase_01 AC 40 ms
61,372 KB
testcase_02 AC 64 ms
82,068 KB
testcase_03 AC 37 ms
54,792 KB
testcase_04 AC 137 ms
114,484 KB
testcase_05 AC 151 ms
126,072 KB
testcase_06 AC 71 ms
90,244 KB
testcase_07 AC 197 ms
151,912 KB
testcase_08 AC 264 ms
180,724 KB
testcase_09 AC 37 ms
54,824 KB
testcase_10 AC 37 ms
55,204 KB
testcase_11 AC 36 ms
53,928 KB
testcase_12 AC 115 ms
115,128 KB
testcase_13 AC 37 ms
54,068 KB
testcase_14 AC 36 ms
54,320 KB
testcase_15 AC 36 ms
54,140 KB
testcase_16 AC 36 ms
55,424 KB
testcase_17 AC 35 ms
54,976 KB
testcase_18 AC 35 ms
54,492 KB
testcase_19 AC 1,499 ms
357,300 KB
testcase_20 AC 2,550 ms
413,780 KB
testcase_21 AC 160 ms
203,724 KB
testcase_22 AC 36 ms
54,928 KB
testcase_23 AC 38 ms
54,076 KB
testcase_24 AC 38 ms
54,056 KB
testcase_25 AC 229 ms
165,056 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())
    if V > (abs(Sx-Gx) + abs(Sy-Gy)) * 9:
        print(abs(Sx-Gx) + abs(Sy-Gy))
        return
    V = min(V, powerMax)
    Grid = [list(map(int, input().split())) for _ in range(N)]

    def bfs(G, H, W, startY, startX, goalY, goalX, power_init) -> list:
        q = deque()
        dist = [[[INF] * (powerMax + 1) for _ in range(W)] for _ in range(H)]
        q.append((startY, startX, power_init))
        dist[startY][startX][power_init] = 0
        while q:
            nowY, nowX, now_power = q.popleft()
            if nowY == goalY and nowX == goalX:
                return dist[nowY][nowX][now_power]
            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 >= H or nextx >= W:
                    continue
                next_power = now_power - G[nexty][nextx]
                if next_power <= 0 or dist[nexty][nextx][next_power] != INF:
                    continue
                q.append((nexty, nextx, next_power))
                dist[nexty][nextx][next_power] = dist[nowY][nowX][now_power] + 1
        return -1
    
    print(bfs(Grid, N, N, Sy - 1, Sx - 1, Gy - 1, Gx - 1, V))
    # ans = min(dist[Gy - 1][Gx - 1][1:])
    # print(ans if ans != INF else -1)
    return

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