結果

問題 No.1995 CHIKA Road
ユーザー tktk_snsntktk_snsn
提出日時 2022-07-02 00:59:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 168,832 KB
最終ジャッジ日時 2024-11-26 09:21:40
合計ジャッジ時間 13,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 49 ms
60,416 KB
testcase_06 AC 146 ms
81,664 KB
testcase_07 AC 232 ms
96,384 KB
testcase_08 AC 61 ms
65,536 KB
testcase_09 AC 52 ms
61,440 KB
testcase_10 AC 282 ms
98,944 KB
testcase_11 AC 728 ms
168,832 KB
testcase_12 AC 279 ms
131,072 KB
testcase_13 AC 266 ms
104,576 KB
testcase_14 AC 283 ms
107,520 KB
testcase_15 AC 623 ms
145,276 KB
testcase_16 AC 155 ms
86,528 KB
testcase_17 AC 353 ms
111,616 KB
testcase_18 AC 545 ms
140,672 KB
testcase_19 AC 554 ms
140,672 KB
testcase_20 AC 351 ms
111,616 KB
testcase_21 AC 329 ms
112,256 KB
testcase_22 AC 517 ms
141,184 KB
testcase_23 AC 234 ms
95,744 KB
testcase_24 AC 450 ms
123,136 KB
testcase_25 AC 180 ms
89,216 KB
testcase_26 AC 248 ms
96,896 KB
testcase_27 AC 442 ms
124,160 KB
testcase_28 AC 340 ms
111,744 KB
testcase_29 AC 550 ms
143,104 KB
testcase_30 AC 163 ms
88,448 KB
testcase_31 AC 131 ms
81,408 KB
testcase_32 AC 187 ms
91,776 KB
testcase_33 AC 465 ms
126,080 KB
testcase_34 AC 139 ms
81,536 KB
testcase_35 AC 251 ms
95,744 KB
testcase_36 AC 279 ms
101,248 KB
testcase_37 AC 533 ms
127,128 KB
testcase_38 AC 388 ms
116,096 KB
testcase_39 AC 136 ms
81,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10 ** 18

N, M = map(int, input().split())
AB = list(list(map(int, input().split())) for _ in range(M))

exist = {1, N}
for a, b in AB:
    exist.add(a)
    exist.add(b)

exist = sorted(exist)
etoi = {e: i for i, e in enumerate(exist)}
size = len(exist)

G = [[] for _ in range(size)]
for i in range(size - 1):
    d = (exist[i+1] - exist[i]) * 2
    G[i].append((i + 1, d))
    G[i + 1].append((i, d))
for a, b in AB:
    d = b + b - a - a - 1
    a = etoi[a]
    b = etoi[b]
    G[a].append((b, d))
    G[b].append((a, d))


dist = [inf] * size
dist[0] = 0
que = [(0, 0)]
while que:
    ds, s = heapq.heappop(que)
    if dist[s] < ds:
        continue
    for t, dt in G[s]:
        if dist[t] > ds + dt:
            dist[t] = ds + dt
            heapq.heappush(que, (ds + dt, t))

print(dist[size-1])
0