結果

問題 No.34 砂漠の行商人
ユーザー kept1994kept1994
提出日時 2022-05-07 17:37:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,458 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 468,088 KB
最終ジャッジ日時 2024-07-06 22:58:14
合計ジャッジ時間 17,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,760 KB
testcase_01 AC 38 ms
60,416 KB
testcase_02 AC 59 ms
82,176 KB
testcase_03 AC 37 ms
58,752 KB
testcase_04 AC 131 ms
114,688 KB
testcase_05 AC 135 ms
126,892 KB
testcase_06 AC 82 ms
103,424 KB
testcase_07 AC 184 ms
152,704 KB
testcase_08 AC 237 ms
181,532 KB
testcase_09 AC 1,890 ms
310,964 KB
testcase_10 AC 297 ms
227,536 KB
testcase_11 AC 4,013 ms
447,620 KB
testcase_12 AC 112 ms
115,456 KB
testcase_13 TLE -
testcase_14 AC 4,176 ms
438,860 KB
testcase_15 AC 115 ms
112,676 KB
testcase_16 AC 298 ms
155,448 KB
testcase_17 AC 116 ms
155,348 KB
testcase_18 AC 79 ms
85,040 KB
testcase_19 AC 1,368 ms
374,408 KB
testcase_20 AC 2,462 ms
428,220 KB
testcase_21 AC 159 ms
203,760 KB
testcase_22 AC 169 ms
197,612 KB
testcase_23 AC 142 ms
132,320 KB
testcase_24 AC 3,002 ms
422,564 KB
testcase_25 AC 223 ms
167,500 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())
    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((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:
                return min_cost
            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((min_cost + 1, nexty, nextx, next_power))
                dist[nexty][nextx][next_power] = min_cost + 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