結果

問題 No.1995 CHIKA Road
ユーザー tktk_snsntktk_snsn
提出日時 2022-07-02 00:59:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 701 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 1,775 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 169,172 KB
最終ジャッジ日時 2024-05-04 19:26:25
合計ジャッジ時間 12,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,864 KB
testcase_01 AC 34 ms
52,992 KB
testcase_02 AC 37 ms
52,992 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 35 ms
52,992 KB
testcase_05 AC 43 ms
60,288 KB
testcase_06 AC 125 ms
81,920 KB
testcase_07 AC 211 ms
96,768 KB
testcase_08 AC 53 ms
66,048 KB
testcase_09 AC 48 ms
61,824 KB
testcase_10 AC 271 ms
99,328 KB
testcase_11 AC 701 ms
169,172 KB
testcase_12 AC 255 ms
131,328 KB
testcase_13 AC 237 ms
104,832 KB
testcase_14 AC 247 ms
107,984 KB
testcase_15 AC 587 ms
145,280 KB
testcase_16 AC 141 ms
86,784 KB
testcase_17 AC 329 ms
112,000 KB
testcase_18 AC 495 ms
141,312 KB
testcase_19 AC 498 ms
141,168 KB
testcase_20 AC 325 ms
111,488 KB
testcase_21 AC 301 ms
112,128 KB
testcase_22 AC 496 ms
141,292 KB
testcase_23 AC 204 ms
95,616 KB
testcase_24 AC 406 ms
123,136 KB
testcase_25 AC 169 ms
88,832 KB
testcase_26 AC 250 ms
97,152 KB
testcase_27 AC 411 ms
124,428 KB
testcase_28 AC 297 ms
112,128 KB
testcase_29 AC 496 ms
143,232 KB
testcase_30 AC 145 ms
88,732 KB
testcase_31 AC 117 ms
81,744 KB
testcase_32 AC 184 ms
91,904 KB
testcase_33 AC 423 ms
126,328 KB
testcase_34 AC 123 ms
81,816 KB
testcase_35 AC 217 ms
96,208 KB
testcase_36 AC 250 ms
101,376 KB
testcase_37 AC 472 ms
127,880 KB
testcase_38 AC 335 ms
116,480 KB
testcase_39 AC 115 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