結果

問題 No.1995 CHIKA Road
ユーザー titan23titan23
提出日時 2022-07-01 23:27:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 777 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 155,112 KB
最終ジャッジ日時 2024-05-04 17:56:52
合計ジャッジ時間 12,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,444 KB
testcase_01 AC 38 ms
54,184 KB
testcase_02 AC 43 ms
54,528 KB
testcase_03 AC 44 ms
54,016 KB
testcase_04 AC 40 ms
54,912 KB
testcase_05 AC 48 ms
62,720 KB
testcase_06 AC 133 ms
80,748 KB
testcase_07 AC 225 ms
90,272 KB
testcase_08 AC 50 ms
65,792 KB
testcase_09 AC 49 ms
63,360 KB
testcase_10 AC 278 ms
96,564 KB
testcase_11 AC 777 ms
155,112 KB
testcase_12 AC 285 ms
116,644 KB
testcase_13 AC 300 ms
99,552 KB
testcase_14 AC 313 ms
100,624 KB
testcase_15 AC 627 ms
143,528 KB
testcase_16 AC 153 ms
83,492 KB
testcase_17 AC 367 ms
108,552 KB
testcase_18 AC 544 ms
130,816 KB
testcase_19 AC 545 ms
132,396 KB
testcase_20 AC 347 ms
104,200 KB
testcase_21 AC 318 ms
102,512 KB
testcase_22 AC 518 ms
125,492 KB
testcase_23 AC 229 ms
90,880 KB
testcase_24 AC 465 ms
117,984 KB
testcase_25 AC 180 ms
84,932 KB
testcase_26 AC 274 ms
95,296 KB
testcase_27 AC 469 ms
117,208 KB
testcase_28 AC 321 ms
102,656 KB
testcase_29 AC 533 ms
128,364 KB
testcase_30 AC 163 ms
84,680 KB
testcase_31 AC 135 ms
80,196 KB
testcase_32 AC 199 ms
87,372 KB
testcase_33 AC 442 ms
116,600 KB
testcase_34 AC 135 ms
81,176 KB
testcase_35 AC 245 ms
92,288 KB
testcase_36 AC 276 ms
97,296 KB
testcase_37 AC 497 ms
123,364 KB
testcase_38 AC 379 ms
109,684 KB
testcase_39 AC 121 ms
80,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict, deque
from heapq import heapify, heappush, heappop
input = lambda: sys.stdin.readline().rstrip()
inf = float('inf')

def dijkstra(G: list, s: int) -> list:
  "Return dist from s. / O(|E|log|V|)"
  dist = defaultdict(lambda: inf)
  dist[s] = 0
  hq = [(0, s)]
  while hq:
    d, v = heappop(hq)
    if dist[v] < d:
      continue
    for x,c in G[v]:
      if dist[x] > d + c:
        dist[x] = d + c
        heappush(hq, (d+c, x))
  return dist

#  -----------------------  #

n, m = map(int, input().split())
G = defaultdict(list)
E = []

for _ in range(m):
  a, b = map(int, input().split())
  G[a-1].append((b-1, 2*b-2*a-1))
  E.append(a-1)
  E.append(b-1)

E.append(0)
E.append(n-1)
E.sort()

for i in range(len(E)-1):
  now, nxt = E[i], E[i+1]
  dist = (E[i+1] - E[i]) * 2
  G[now].append((nxt, dist))

dist = dijkstra(G, 0)
print(dist[n-1])
0