結果

問題 No.1995 CHIKA Road
ユーザー hiragnhiragn
提出日時 2022-12-14 18:34:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 912 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 160,432 KB
最終ジャッジ日時 2024-11-08 10:21:30
合計ジャッジ時間 16,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
66,560 KB
testcase_01 AC 73 ms
66,432 KB
testcase_02 AC 73 ms
66,432 KB
testcase_03 AC 73 ms
66,432 KB
testcase_04 AC 75 ms
67,072 KB
testcase_05 AC 84 ms
70,528 KB
testcase_06 AC 208 ms
84,924 KB
testcase_07 AC 302 ms
96,952 KB
testcase_08 AC 92 ms
73,600 KB
testcase_09 AC 86 ms
71,168 KB
testcase_10 AC 375 ms
97,648 KB
testcase_11 AC 912 ms
160,432 KB
testcase_12 AC 404 ms
123,900 KB
testcase_13 AC 379 ms
112,088 KB
testcase_14 AC 396 ms
111,068 KB
testcase_15 AC 742 ms
148,080 KB
testcase_16 AC 240 ms
89,088 KB
testcase_17 AC 465 ms
116,812 KB
testcase_18 AC 670 ms
132,568 KB
testcase_19 AC 681 ms
132,772 KB
testcase_20 AC 455 ms
109,240 KB
testcase_21 AC 420 ms
107,028 KB
testcase_22 AC 634 ms
130,524 KB
testcase_23 AC 314 ms
98,400 KB
testcase_24 AC 602 ms
124,320 KB
testcase_25 AC 260 ms
88,960 KB
testcase_26 AC 359 ms
103,428 KB
testcase_27 AC 586 ms
123,228 KB
testcase_28 AC 418 ms
107,140 KB
testcase_29 AC 652 ms
132,408 KB
testcase_30 AC 238 ms
88,704 KB
testcase_31 AC 206 ms
84,076 KB
testcase_32 AC 278 ms
91,136 KB
testcase_33 AC 578 ms
122,740 KB
testcase_34 AC 212 ms
85,008 KB
testcase_35 AC 328 ms
100,472 KB
testcase_36 AC 368 ms
104,716 KB
testcase_37 AC 624 ms
128,384 KB
testcase_38 AC 486 ms
115,728 KB
testcase_39 AC 206 ms
83,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
from typing import List


def dijkstra(edges: "List[List[(cost, to)]]", start_node: int) -> list:
    hq = []
    heapify(hq)
    dist = [float("inf")] * len(edges)
    heappush(hq, (0, start_node))
    dist[start_node] = 0
    while hq:
        min_cost, now = heappop(hq)
        if min_cost > dist[now]:
            continue
        for cost, nxt in edges[now]:
            if dist[nxt] > dist[now] + cost:
                dist[nxt] = dist[now] + cost
                heappush(hq, (dist[nxt], nxt))
    return dist


def main():
    n, m = map(int, input().split())

    st = {0, n - 1}
    edge = []
    for _ in [0] * m:
        a, b = map(int, input().split())
        a -= 1
        b -= 1
        edge.append((a, b))
        st.add(a)
        st.add(b)

    lst = sorted(list(st))
    nn = len(lst)
    h = {x: i for i, x in enumerate(lst)}  # 座標圧縮

    route = [[] for _ in [0] * nn]
    for a, b in edge:
        route[h[a]].append([2 * b - 2 * a - 1, h[b]])
    for i in range(nn - 1):
        route[i].append([2 * (lst[i + 1] - lst[i]), i + 1])
    ans = dijkstra(route, 0)[-1]
    print(ans)


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