結果

問題 No.1995 CHIKA Road
ユーザー とりゐとりゐ
提出日時 2022-07-01 21:35:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 971 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 193,852 KB
最終ジャッジ日時 2024-11-26 04:10:36
合計ジャッジ時間 14,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,824 KB
testcase_01 AC 44 ms
54,732 KB
testcase_02 AC 41 ms
54,668 KB
testcase_03 AC 40 ms
55,712 KB
testcase_04 AC 44 ms
55,672 KB
testcase_05 AC 51 ms
63,760 KB
testcase_06 AC 163 ms
81,912 KB
testcase_07 AC 255 ms
94,068 KB
testcase_08 AC 56 ms
67,376 KB
testcase_09 AC 51 ms
64,252 KB
testcase_10 AC 273 ms
86,540 KB
testcase_11 AC 971 ms
193,852 KB
testcase_12 AC 358 ms
122,288 KB
testcase_13 AC 361 ms
110,932 KB
testcase_14 AC 375 ms
112,016 KB
testcase_15 AC 802 ms
175,188 KB
testcase_16 AC 183 ms
85,056 KB
testcase_17 AC 429 ms
117,424 KB
testcase_18 AC 730 ms
145,100 KB
testcase_19 AC 662 ms
145,676 KB
testcase_20 AC 403 ms
114,688 KB
testcase_21 AC 381 ms
108,916 KB
testcase_22 AC 638 ms
139,956 KB
testcase_23 AC 270 ms
93,628 KB
testcase_24 AC 564 ms
131,380 KB
testcase_25 AC 209 ms
86,764 KB
testcase_26 AC 301 ms
99,812 KB
testcase_27 AC 548 ms
129,568 KB
testcase_28 AC 378 ms
109,180 KB
testcase_29 AC 648 ms
144,948 KB
testcase_30 AC 194 ms
85,820 KB
testcase_31 AC 161 ms
80,884 KB
testcase_32 AC 222 ms
88,460 KB
testcase_33 AC 538 ms
129,084 KB
testcase_34 AC 165 ms
81,976 KB
testcase_35 AC 286 ms
95,720 KB
testcase_36 AC 326 ms
103,972 KB
testcase_37 AC 621 ms
135,632 KB
testcase_38 AC 468 ms
119,192 KB
testcase_39 AC 156 ms
80,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
INF=10**18
def dijkstra():
  dist=defaultdict(lambda:INF)
  hq=[(0,1)]
  dist[1]=0
  seen=set()
  while hq:
    w,v=heappop(hq)
    if dist[v]<w:
      continue
    seen.add(v)
    for to,cost in edge[v]:
      if to not in seen and dist[v]+cost<dist[to]:
        dist[to]=dist[v]+cost
        heappush(hq,(dist[to],to))
  return dist

from collections import defaultdict
edge=defaultdict(list)
n,m=map(int,input().split())
town=set([1,n])
for _ in range(m):
  a,b=map(int,input().split())
  town.add(a)
  town.add(b)
  edge[a].append((b,2*b-2*a-1))

town=sorted(list(town))
k=len(town)
for i in range(k-1):
  edge[town[i]].append((town[i+1],2*(town[i+1]-town[i])))
#print(edge)
d=dijkstra()
print(d[n])
0