結果

問題 No.1995 CHIKA Road
ユーザー KazunKazun
提出日時 2022-07-01 21:43:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 181,316 KB
最終ジャッジ日時 2024-11-26 04:28:18
合計ジャッジ時間 7,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,992 KB
testcase_01 AC 38 ms
54,384 KB
testcase_02 AC 39 ms
54,860 KB
testcase_03 AC 38 ms
54,316 KB
testcase_04 AC 39 ms
54,416 KB
testcase_05 AC 42 ms
54,636 KB
testcase_06 AC 103 ms
79,400 KB
testcase_07 AC 142 ms
93,144 KB
testcase_08 AC 42 ms
55,700 KB
testcase_09 AC 41 ms
55,264 KB
testcase_10 AC 125 ms
84,020 KB
testcase_11 AC 370 ms
181,316 KB
testcase_12 AC 247 ms
128,644 KB
testcase_13 AC 166 ms
110,112 KB
testcase_14 AC 177 ms
110,340 KB
testcase_15 AC 339 ms
140,568 KB
testcase_16 AC 114 ms
83,680 KB
testcase_17 AC 206 ms
112,360 KB
testcase_18 AC 297 ms
145,420 KB
testcase_19 AC 298 ms
143,668 KB
testcase_20 AC 191 ms
107,588 KB
testcase_21 AC 185 ms
104,416 KB
testcase_22 AC 261 ms
117,692 KB
testcase_23 AC 142 ms
93,368 KB
testcase_24 AC 242 ms
119,236 KB
testcase_25 AC 121 ms
84,328 KB
testcase_26 AC 158 ms
94,024 KB
testcase_27 AC 245 ms
119,292 KB
testcase_28 AC 185 ms
104,368 KB
testcase_29 AC 277 ms
121,572 KB
testcase_30 AC 124 ms
84,788 KB
testcase_31 AC 105 ms
78,932 KB
testcase_32 AC 128 ms
87,412 KB
testcase_33 AC 235 ms
119,360 KB
testcase_34 AC 104 ms
79,200 KB
testcase_35 AC 149 ms
90,160 KB
testcase_36 AC 163 ms
101,856 KB
testcase_37 AC 263 ms
125,088 KB
testcase_38 AC 207 ms
104,212 KB
testcase_39 AC 104 ms
78,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

V=[1,N]
E=defaultdict(list)
for i in range(M):
    A,B=map(int,input().split())

    V.append(A); V.append(B)
    E[A].append(B)

V=sorted(set(V)); L=len(V)
V_ind={v:i for i,v in enumerate(V)}

inf=float("inf")
DP=[inf]*L; DP[0]=0
for i in range(L-1):
    DP[i+1]=min(DP[i+1],DP[i]+2*(V[i+1]-V[i]))
    for b in E[V[i]]:
        DP[V_ind[b]]=min(DP[V_ind[b]], DP[i]+2*(b-V[i])-1)

print(DP[-1])
0