結果

問題 No.1995 CHIKA Road
ユーザー ああいいああいい
提出日時 2022-07-01 21:51:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 897 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 165,560 KB
最終ジャッジ日時 2024-05-04 16:15:20
合計ジャッジ時間 14,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,888 KB
testcase_01 AC 41 ms
54,144 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 43 ms
54,528 KB
testcase_05 AC 54 ms
63,232 KB
testcase_06 AC 151 ms
82,048 KB
testcase_07 AC 253 ms
90,368 KB
testcase_08 AC 64 ms
65,664 KB
testcase_09 AC 58 ms
63,872 KB
testcase_10 AC 284 ms
86,400 KB
testcase_11 AC 897 ms
158,768 KB
testcase_12 AC 340 ms
121,928 KB
testcase_13 AC 355 ms
109,516 KB
testcase_14 AC 383 ms
110,648 KB
testcase_15 AC 755 ms
165,560 KB
testcase_16 AC 174 ms
86,272 KB
testcase_17 AC 407 ms
107,412 KB
testcase_18 AC 624 ms
139,616 KB
testcase_19 AC 625 ms
139,396 KB
testcase_20 AC 410 ms
107,488 KB
testcase_21 AC 384 ms
110,076 KB
testcase_22 AC 618 ms
133,232 KB
testcase_23 AC 289 ms
90,808 KB
testcase_24 AC 533 ms
118,184 KB
testcase_25 AC 210 ms
88,320 KB
testcase_26 AC 316 ms
100,064 KB
testcase_27 AC 514 ms
125,136 KB
testcase_28 AC 363 ms
110,364 KB
testcase_29 AC 627 ms
140,408 KB
testcase_30 AC 220 ms
87,552 KB
testcase_31 AC 156 ms
80,512 KB
testcase_32 AC 220 ms
91,648 KB
testcase_33 AC 500 ms
128,528 KB
testcase_34 AC 176 ms
82,460 KB
testcase_35 AC 275 ms
96,496 KB
testcase_36 AC 323 ms
102,432 KB
testcase_37 AC 556 ms
127,632 KB
testcase_38 AC 460 ms
116,744 KB
testcase_39 AC 164 ms
80,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

s = set()
from collections import defaultdict
G = defaultdict(list)
for _ in range(M):
    a,b = map(int,input().split())
    G[a].append((b,2 * b - 2 * a - 1))
    s.add(a)
    s.add(b)
s.add(1)
s.add(N)
l = sorted(s)
D = {v:i for i,v in enumerate(l)}

n = len(l)
for i in range(n - 1):
    G[l[i]].append((l[i+1],2 * (l[i+1] - l[i])))
                   
inf = 10 ** 10
dist = [inf] * n
dist[0] = 0
import heapq
q = [(0,1)]
while q:
    d,now = heapq.heappop(q)
    if dist[D[now]] < d:continue
    for v,c in G[now]:
        if dist[D[v]] > d + c:
            dist[D[v]] = d + c
            heapq.heappush(q,(d + c,v))
print(dist[-1])
0