結果

問題 No.1995 CHIKA Road
ユーザー lloyzlloyz
提出日時 2022-07-01 23:32:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 161,064 KB
最終ジャッジ日時 2024-11-26 07:31:51
合計ジャッジ時間 14,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 49 ms
54,144 KB
testcase_03 AC 47 ms
54,272 KB
testcase_04 AC 48 ms
54,656 KB
testcase_05 AC 60 ms
62,848 KB
testcase_06 AC 173 ms
82,048 KB
testcase_07 AC 267 ms
92,192 KB
testcase_08 AC 68 ms
65,792 KB
testcase_09 AC 62 ms
63,616 KB
testcase_10 AC 275 ms
89,548 KB
testcase_11 AC 826 ms
161,064 KB
testcase_12 AC 425 ms
134,468 KB
testcase_13 AC 343 ms
112,456 KB
testcase_14 AC 358 ms
113,316 KB
testcase_15 AC 679 ms
149,292 KB
testcase_16 AC 198 ms
86,272 KB
testcase_17 AC 419 ms
109,788 KB
testcase_18 AC 585 ms
128,856 KB
testcase_19 AC 594 ms
126,696 KB
testcase_20 AC 379 ms
106,196 KB
testcase_21 AC 355 ms
107,304 KB
testcase_22 AC 556 ms
126,392 KB
testcase_23 AC 272 ms
92,956 KB
testcase_24 AC 520 ms
119,436 KB
testcase_25 AC 210 ms
88,832 KB
testcase_26 AC 296 ms
97,296 KB
testcase_27 AC 503 ms
118,256 KB
testcase_28 AC 364 ms
108,328 KB
testcase_29 AC 596 ms
129,104 KB
testcase_30 AC 206 ms
87,936 KB
testcase_31 AC 162 ms
80,896 KB
testcase_32 AC 236 ms
92,032 KB
testcase_33 AC 490 ms
123,148 KB
testcase_34 AC 177 ms
82,048 KB
testcase_35 AC 293 ms
93,968 KB
testcase_36 AC 314 ms
104,020 KB
testcase_37 AC 558 ms
124,760 KB
testcase_38 AC 438 ms
111,168 KB
testcase_39 AC 162 ms
81,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heapify, heappop, heappush

n, m = map(int, input().split())
Edge = []
p = set([0, n - 1])
for _ in range(m):
    a, b = map(int, input().split())
    Edge.append((a - 1, b - 1))
    p.add(a - 1)
    p.add(b - 1)
sortP = sorted(p)
l = len(sortP)

idx = 0
H = defaultdict(int)
for cp in sortP:
    H[cp] = idx
    idx += 1
route = defaultdict(list)
for a, b in Edge:
    route[H[a]].append((H[b], 2 * (b - a) - 1))
for i in range(l - 1):
    route[i].append((i + 1, 2 * (sortP[i + 1] - sortP[i])))

INF = 10**18
DP = [INF for _ in range(l)]
H = [(0, 0)]
heapify(H)
while H:
    ccost, cp = heappop(H)
    if DP[cp] <= ccost:
        continue
    DP[cp] = ccost
    if cp == l - 1:
        print(DP[l - 1])
        break
    for np, dcost in route[cp]:
        heappush(H, (ccost + dcost, np))
0