結果

問題 No.1995 CHIKA Road
ユーザー roarisroaris
提出日時 2022-10-29 17:00:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 179,804 KB
最終ジャッジ日時 2024-07-06 14:58:24
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,896 KB
testcase_01 AC 43 ms
54,452 KB
testcase_02 AC 42 ms
55,116 KB
testcase_03 AC 47 ms
53,876 KB
testcase_04 AC 43 ms
55,352 KB
testcase_05 AC 42 ms
54,120 KB
testcase_06 AC 87 ms
79,288 KB
testcase_07 AC 122 ms
93,988 KB
testcase_08 AC 44 ms
55,440 KB
testcase_09 AC 44 ms
55,012 KB
testcase_10 AC 102 ms
84,376 KB
testcase_11 AC 408 ms
179,804 KB
testcase_12 AC 235 ms
125,412 KB
testcase_13 AC 155 ms
112,072 KB
testcase_14 AC 156 ms
112,628 KB
testcase_15 AC 355 ms
138,032 KB
testcase_16 AC 98 ms
81,680 KB
testcase_17 AC 194 ms
114,972 KB
testcase_18 AC 279 ms
119,916 KB
testcase_19 AC 279 ms
119,760 KB
testcase_20 AC 178 ms
100,528 KB
testcase_21 AC 169 ms
106,500 KB
testcase_22 AC 260 ms
123,024 KB
testcase_23 AC 128 ms
94,204 KB
testcase_24 AC 244 ms
119,612 KB
testcase_25 AC 102 ms
84,148 KB
testcase_26 AC 137 ms
100,188 KB
testcase_27 AC 233 ms
120,852 KB
testcase_28 AC 171 ms
105,780 KB
testcase_29 AC 272 ms
119,660 KB
testcase_30 AC 102 ms
84,164 KB
testcase_31 AC 86 ms
78,492 KB
testcase_32 AC 112 ms
87,520 KB
testcase_33 AC 235 ms
124,996 KB
testcase_34 AC 91 ms
78,816 KB
testcase_35 AC 128 ms
96,896 KB
testcase_36 AC 149 ms
102,504 KB
testcase_37 AC 251 ms
124,976 KB
testcase_38 AC 199 ms
115,584 KB
testcase_39 AC 85 ms
78,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
G = defaultdict(list)
l = [1, N]

for _ in range(M):
    u, v = map(int, input().split())
    G[u].append(v)
    l += [u, v]

l = list(set(l))
l.sort()
idx = defaultdict(int)

for i in range(len(l)):
    idx[l[i]] = i
    
dp = [10**18]*len(l)
dp[0] = 0

for i in range(len(l)):
    if i+1<len(l):
        dp[i+1] = min(dp[i+1], dp[i]+2*(l[i+1]-l[i]))
    
    for j in G[l[i]]:
        dp[idx[j]] = min(dp[idx[j]], dp[i]+2*j-2*l[i]-1)

print(dp[-1])
0