結果

問題 No.1995 CHIKA Road
ユーザー 👑 KazunKazun
提出日時 2022-07-01 21:43:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 181,280 KB
最終ジャッジ日時 2024-05-04 16:01:51
合計ジャッジ時間 9,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,760 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 44 ms
53,248 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 47 ms
54,400 KB
testcase_06 AC 117 ms
79,232 KB
testcase_07 AC 164 ms
93,016 KB
testcase_08 AC 47 ms
55,360 KB
testcase_09 AC 47 ms
54,272 KB
testcase_10 AC 140 ms
84,148 KB
testcase_11 AC 466 ms
181,280 KB
testcase_12 AC 291 ms
128,772 KB
testcase_13 AC 200 ms
110,112 KB
testcase_14 AC 207 ms
110,348 KB
testcase_15 AC 407 ms
140,372 KB
testcase_16 AC 130 ms
84,224 KB
testcase_17 AC 244 ms
112,368 KB
testcase_18 AC 351 ms
145,676 KB
testcase_19 AC 355 ms
143,796 KB
testcase_20 AC 231 ms
107,964 KB
testcase_21 AC 217 ms
104,420 KB
testcase_22 AC 325 ms
117,552 KB
testcase_23 AC 167 ms
93,312 KB
testcase_24 AC 300 ms
119,224 KB
testcase_25 AC 139 ms
84,480 KB
testcase_26 AC 182 ms
93,928 KB
testcase_27 AC 288 ms
119,808 KB
testcase_28 AC 220 ms
104,236 KB
testcase_29 AC 327 ms
122,032 KB
testcase_30 AC 142 ms
84,864 KB
testcase_31 AC 126 ms
78,764 KB
testcase_32 AC 154 ms
87,936 KB
testcase_33 AC 296 ms
119,620 KB
testcase_34 AC 127 ms
79,428 KB
testcase_35 AC 170 ms
90,036 KB
testcase_36 AC 198 ms
102,000 KB
testcase_37 AC 314 ms
125,216 KB
testcase_38 AC 252 ms
104,612 KB
testcase_39 AC 125 ms
78,976 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