結果

問題 No.34 砂漠の行商人
ユーザー colognecologne
提出日時 2022-01-23 16:57:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,021 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 388,784 KB
最終ジャッジ日時 2024-11-29 19:06:51
合計ジャッジ時間 18,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
324,372 KB
testcase_01 AC 39 ms
61,072 KB
testcase_02 AC 105 ms
76,564 KB
testcase_03 AC 40 ms
53,008 KB
testcase_04 AC 567 ms
91,844 KB
testcase_05 AC 534 ms
89,872 KB
testcase_06 AC 102 ms
77,296 KB
testcase_07 AC 870 ms
99,104 KB
testcase_08 AC 1,253 ms
119,088 KB
testcase_09 AC 40 ms
60,040 KB
testcase_10 AC 40 ms
60,224 KB
testcase_11 AC 39 ms
60,012 KB
testcase_12 AC 298 ms
86,560 KB
testcase_13 AC 41 ms
61,796 KB
testcase_14 AC 40 ms
60,664 KB
testcase_15 AC 38 ms
59,288 KB
testcase_16 AC 39 ms
60,644 KB
testcase_17 AC 37 ms
60,260 KB
testcase_18 AC 36 ms
53,912 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 110 ms
81,112 KB
testcase_22 AC 39 ms
59,264 KB
testcase_23 AC 38 ms
59,136 KB
testcase_24 AC 39 ms
59,776 KB
testcase_25 AC 790 ms
388,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq

input = sys.stdin.readline


def main():
    N, V, SX, SY, GX, GY = map(int, input().split())
    L = [list(map(int, input().split())) for i in range(N)]

    if V > (abs(SX-GX) + abs(SY-GY)) * 9:
        print(abs(SX-GX) + abs(SY-GY))
        return

    vis = [[[False]*(V+1) for i in range(N)] for i in range(N)]
    hp = [[0]*N for i in range(N)]

    Q = [(0, SY-1, SX-1, V)]
    while len(Q) > 0:
        d, r, c, v = heapq.heappop(Q)
        if (r, c) == (GY-1, GX-1):
            print(d)
            return
        if vis[r][c][v]:
            continue
        vis[r][c][v] = True
        if hp[r][c] >= v:
            continue
        hp[r][c] = v
        for dx, dy in [(-1, 0), (1, 0), (0, -1), (0, 1)]:
            x, y = r+dx, c+dy
            if 0 <= x < N and 0 <= y < N and v > L[x][y]:
                if not vis[x][y][v-L[x][y]] and not hp[x][y] >= v-L[x][y]:
                    heapq.heappush(Q, (d+1, x, y, v-L[x][y]))

    print(-1)


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