結果

問題 No.2695 Warp Zone
ユーザー sharusharu
提出日時 2024-03-23 02:08:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 430 ms / 2,000 ms
コード長 1,130 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 79,892 KB
最終ジャッジ日時 2024-09-30 13:00:56
合計ジャッジ時間 6,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,656 KB
testcase_01 AC 38 ms
55,112 KB
testcase_02 AC 39 ms
55,496 KB
testcase_03 AC 430 ms
78,780 KB
testcase_04 AC 410 ms
79,892 KB
testcase_05 AC 414 ms
79,456 KB
testcase_06 AC 429 ms
78,944 KB
testcase_07 AC 406 ms
78,812 KB
testcase_08 AC 66 ms
73,848 KB
testcase_09 AC 224 ms
79,284 KB
testcase_10 AC 42 ms
55,904 KB
testcase_11 AC 119 ms
77,248 KB
testcase_12 AC 262 ms
78,632 KB
testcase_13 AC 38 ms
55,572 KB
testcase_14 AC 302 ms
78,684 KB
testcase_15 AC 216 ms
79,376 KB
testcase_16 AC 116 ms
76,992 KB
testcase_17 AC 165 ms
78,616 KB
testcase_18 AC 355 ms
79,120 KB
testcase_19 AC 58 ms
69,700 KB
testcase_20 AC 317 ms
79,008 KB
testcase_21 AC 324 ms
78,928 KB
testcase_22 AC 210 ms
78,716 KB
testcase_23 AC 278 ms
78,404 KB
testcase_24 AC 39 ms
54,668 KB
testcase_25 AC 38 ms
54,396 KB
testcase_26 AC 36 ms
55,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import *

h, w, n = map(int, input().split())
warp = dict()
for _ in range(n):
    a, b, c, d = map(lambda x: int(x) - 1, input().split())
    warp[(a, b)] = (c, d)

q = [[0, 0, 0]]
INF = float("INF")
dist = defaultdict(lambda: INF)
dist[(0, 0)] = 0
while q:
    dis, i, j = heappop(q)
    if (i, j) in dist and dist[(i, j)] != dis:
        continue

    # warpを使う場合
    if (i, j) in warp:
        ti, tj = warp[(i, j)]
        if dist[(ti, tj)] > dist[(i, j)] + 1:
            dist[(ti, tj)] = dist[(i, j)] + 1
            heappush(q, [dist[(ti, tj)], ti, tj])
    # i,j から別のワープ a,b まで移動
    for (a, b), (c, d) in warp.items():
        md = abs(i - a) + abs(j - b)
        if dist[(a, b)] > dist[(i, j)] + md:
            dist[(a, b)] = dist[(i, j)] + md
            heappush(q, [dist[(a, b)], a, b])
    # H,Wまで移動
    md = abs(i - h + 1) + abs(j - w + 1)
    if dist[(h - 1, w - 1)] > dist[(i, j)] + md:
        dist[(h - 1, w - 1)] = dist[(i, j)] + md
        heappush(q, [dist[((h - 1, w - 1))], h - 1, w - 1])
print(dist[(h - 1, w - 1)])
0