結果

問題 No.1995 CHIKA Road
ユーザー lloyzlloyz
提出日時 2022-07-01 23:32:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 160,812 KB
最終ジャッジ日時 2024-05-04 18:03:04
合計ジャッジ時間 13,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 43 ms
54,144 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 45 ms
53,888 KB
testcase_04 AC 48 ms
54,912 KB
testcase_05 AC 62 ms
62,848 KB
testcase_06 AC 164 ms
81,920 KB
testcase_07 AC 248 ms
92,068 KB
testcase_08 AC 64 ms
65,664 KB
testcase_09 AC 57 ms
63,488 KB
testcase_10 AC 241 ms
89,552 KB
testcase_11 AC 725 ms
160,812 KB
testcase_12 AC 370 ms
134,212 KB
testcase_13 AC 292 ms
112,572 KB
testcase_14 AC 313 ms
113,568 KB
testcase_15 AC 622 ms
149,288 KB
testcase_16 AC 173 ms
86,272 KB
testcase_17 AC 378 ms
110,052 KB
testcase_18 AC 538 ms
128,984 KB
testcase_19 AC 519 ms
126,568 KB
testcase_20 AC 360 ms
106,468 KB
testcase_21 AC 325 ms
107,952 KB
testcase_22 AC 513 ms
126,276 KB
testcase_23 AC 244 ms
92,700 KB
testcase_24 AC 464 ms
119,820 KB
testcase_25 AC 189 ms
88,448 KB
testcase_26 AC 258 ms
96,924 KB
testcase_27 AC 428 ms
117,996 KB
testcase_28 AC 333 ms
108,072 KB
testcase_29 AC 514 ms
129,340 KB
testcase_30 AC 179 ms
88,064 KB
testcase_31 AC 159 ms
81,152 KB
testcase_32 AC 218 ms
92,160 KB
testcase_33 AC 423 ms
123,528 KB
testcase_34 AC 166 ms
82,176 KB
testcase_35 AC 257 ms
94,348 KB
testcase_36 AC 272 ms
104,408 KB
testcase_37 AC 607 ms
125,024 KB
testcase_38 AC 462 ms
110,912 KB
testcase_39 AC 148 ms
81,152 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