結果

問題 No.1995 CHIKA Road
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-25 21:07:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 731 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 168,572 KB
最終ジャッジ日時 2024-08-25 21:08:05
合計ジャッジ時間 14,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,896 KB
testcase_01 AC 40 ms
53,924 KB
testcase_02 AC 41 ms
53,660 KB
testcase_03 AC 36 ms
52,752 KB
testcase_04 AC 36 ms
53,712 KB
testcase_05 AC 48 ms
62,256 KB
testcase_06 AC 139 ms
81,020 KB
testcase_07 AC 235 ms
94,972 KB
testcase_08 AC 53 ms
64,780 KB
testcase_09 AC 48 ms
62,308 KB
testcase_10 AC 287 ms
93,292 KB
testcase_11 AC 731 ms
168,572 KB
testcase_12 AC 292 ms
128,320 KB
testcase_13 AC 279 ms
100,112 KB
testcase_14 AC 305 ms
111,984 KB
testcase_15 AC 642 ms
138,776 KB
testcase_16 AC 165 ms
85,064 KB
testcase_17 AC 361 ms
112,388 KB
testcase_18 AC 552 ms
140,792 KB
testcase_19 AC 540 ms
140,660 KB
testcase_20 AC 348 ms
111,884 KB
testcase_21 AC 347 ms
109,320 KB
testcase_22 AC 478 ms
122,652 KB
testcase_23 AC 235 ms
94,592 KB
testcase_24 AC 481 ms
125,216 KB
testcase_25 AC 181 ms
87,152 KB
testcase_26 AC 249 ms
94,292 KB
testcase_27 AC 453 ms
126,116 KB
testcase_28 AC 344 ms
109,324 KB
testcase_29 AC 518 ms
121,924 KB
testcase_30 AC 166 ms
86,940 KB
testcase_31 AC 136 ms
80,580 KB
testcase_32 AC 190 ms
90,564 KB
testcase_33 AC 473 ms
126,616 KB
testcase_34 AC 147 ms
80,808 KB
testcase_35 AC 243 ms
95,380 KB
testcase_36 AC 276 ms
102,232 KB
testcase_37 AC 483 ms
124,004 KB
testcase_38 AC 396 ms
107,396 KB
testcase_39 AC 141 ms
80,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
z=[1,n]
es=[]
for i in range(m):
  a,b=map(int,input().split())
  es+=[(a,b)]
  z+=[a,b]
z=sorted(set(z))
d={v:i for i,v in enumerate(z)}
l=len(z)
e=[[] for i in range(l)]
for i in range(l-1):
  e[i]+=[(i+1,(z[i+1]-z[i])*2)]
for a,b in es:
  e[d[a]]+=[(d[b],2*b-2*a-1)]
X=1<<60
v=[X]*l
v[0]=0
q=[(v[0],0)]
from heapq import heappush,heappop
while len(q)>0:
  sc,sp=heappop(q)
  if sc>v[sp]:
    continue
  for tp,tc in e[sp]:
    if v[tp]>sc+tc:
      v[tp]=sc+tc
      heappush(q,(v[tp],tp))
print(v[-1])
0