結果

問題 No.1995 CHIKA Road
ユーザー ThetaTheta
提出日時 2024-04-16 11:29:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,037 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 195,508 KB
最終ジャッジ日時 2024-10-07 05:17:37
合計ジャッジ時間 16,553 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,144 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 44 ms
54,400 KB
testcase_03 AC 44 ms
54,528 KB
testcase_04 AC 45 ms
54,784 KB
testcase_05 AC 55 ms
63,104 KB
testcase_06 AC 177 ms
83,644 KB
testcase_07 AC 300 ms
98,424 KB
testcase_08 AC 67 ms
66,432 KB
testcase_09 AC 61 ms
64,256 KB
testcase_10 AC 307 ms
88,448 KB
testcase_11 AC 1,037 ms
195,508 KB
testcase_12 AC 420 ms
133,680 KB
testcase_13 AC 389 ms
119,092 KB
testcase_14 AC 404 ms
120,092 KB
testcase_15 AC 842 ms
185,472 KB
testcase_16 AC 213 ms
89,088 KB
testcase_17 AC 476 ms
126,644 KB
testcase_18 AC 690 ms
152,252 KB
testcase_19 AC 678 ms
152,552 KB
testcase_20 AC 423 ms
120,028 KB
testcase_21 AC 398 ms
114,628 KB
testcase_22 AC 655 ms
143,744 KB
testcase_23 AC 290 ms
99,068 KB
testcase_24 AC 583 ms
139,712 KB
testcase_25 AC 223 ms
91,008 KB
testcase_26 AC 326 ms
105,624 KB
testcase_27 AC 569 ms
138,084 KB
testcase_28 AC 403 ms
114,500 KB
testcase_29 AC 667 ms
150,384 KB
testcase_30 AC 213 ms
90,624 KB
testcase_31 AC 190 ms
83,808 KB
testcase_32 AC 234 ms
91,776 KB
testcase_33 AC 559 ms
136,380 KB
testcase_34 AC 182 ms
85,080 KB
testcase_35 AC 303 ms
102,232 KB
testcase_36 AC 343 ms
109,508 KB
testcase_37 AC 625 ms
143,116 KB
testcase_38 AC 473 ms
121,776 KB
testcase_39 AC 174 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappop, heappush
from itertools import pairwise
from math import inf


def main():
    N, M = map(int, input().split())
    graph = defaultdict(dict)
    roads_edge = set((0, N - 1))
    for _ in range(M):
        A, B = map(int, input().split())
        roads_edge.add(A - 1)
        roads_edge.add(B - 1)
        graph[A - 1][B - 1] = 2 * (B - A) - 1

    roads_edge = sorted(roads_edge)
    for prev_n, cur_n in pairwise(roads_edge):
        graph[prev_n][cur_n] = min(
            2 * (cur_n - prev_n), graph[prev_n].get(cur_n, inf))

    distance = {edge: inf for edge in roads_edge}
    distance[0] = 0
    queue = [(0, 0)]
    while queue:
        c_d, c_n = heappop(queue)
        if distance[c_n] < c_d:
            continue
        for n_n, n_d in graph[c_n].items():
            if distance[n_n] > n_d + c_d:
                distance[n_n] = n_d + c_d
                heappush(queue, (n_d + c_d, n_n))
    print(distance[N - 1])


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