結果

問題 No.2695 Warp Zone
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-29 13:46:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 1,533 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 78,168 KB
最終ジャッジ日時 2024-12-29 13:46:33
合計ジャッジ時間 5,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,420 KB
testcase_01 AC 38 ms
52,828 KB
testcase_02 AC 41 ms
52,968 KB
testcase_03 AC 275 ms
77,400 KB
testcase_04 AC 297 ms
77,684 KB
testcase_05 AC 293 ms
77,632 KB
testcase_06 AC 289 ms
77,384 KB
testcase_07 AC 272 ms
78,168 KB
testcase_08 AC 66 ms
67,184 KB
testcase_09 AC 189 ms
77,160 KB
testcase_10 AC 42 ms
54,684 KB
testcase_11 AC 142 ms
77,060 KB
testcase_12 AC 210 ms
77,516 KB
testcase_13 AC 40 ms
53,480 KB
testcase_14 AC 222 ms
77,272 KB
testcase_15 AC 167 ms
77,892 KB
testcase_16 AC 126 ms
77,228 KB
testcase_17 AC 151 ms
77,604 KB
testcase_18 AC 271 ms
77,596 KB
testcase_19 AC 64 ms
65,976 KB
testcase_20 AC 228 ms
77,612 KB
testcase_21 AC 241 ms
77,972 KB
testcase_22 AC 167 ms
77,308 KB
testcase_23 AC 191 ms
77,352 KB
testcase_24 AC 40 ms
53,076 KB
testcase_25 AC 41 ms
53,504 KB
testcase_26 AC 41 ms
53,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2695

import heapq

MAX_INT = 10 ** 18

def main():
    H, W, N = map(int, input().split())
    warps = []
    for _ in range(N):
        a, b, c, d = map(int, input().split())
        warps.append((a, b, c, d))
    
    points = [(1, 1)]
    for a, b, c, d in warps:
        points.append((a, b)) 
    for a, b, c, d in warps:
        points.append((c, d))
    points.append((H, W)) 

    # dijkstra
    fix = [MAX_INT] * (2 * N + 2)
    seen = [MAX_INT] * (2 * N + 2)
    queue = []
    seen[0] = 0
    heapq.heappush(queue, (0, 0))
    while len(queue) > 0:
        cost, v = heapq.heappop(queue)
        if fix[v] < MAX_INT:
            continue

        fix[v] = cost
        # ワープ
        if 1 <= v <= N:
            w = v + N
            if fix[w] == MAX_INT:
                h_v, w_v = points[v]
                h_w, w_w = points[w]
                new_cost = cost + 1
                if seen[w] > new_cost:
                    seen[w] = new_cost
                    heapq.heappush(queue, (new_cost, w))

        # 普通の移動
        for w in range(2 * N + 2):
            if fix[w] < MAX_INT:
                continue

            h_v, w_v = points[v]
            h_w, w_w = points[w]
            new_cost = cost + (abs(h_v - h_w) + abs(w_v - w_w))
            if seen[w] > new_cost:
                seen[w] = new_cost
                heapq.heappush(queue, (new_cost, w))
                
    print(fix[-1])
  
    
























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