結果

問題 No.1995 CHIKA Road
ユーザー titan23titan23
提出日時 2022-07-01 23:21:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 131,556 KB
最終ジャッジ日時 2024-05-04 17:52:27
合計ジャッジ時間 11,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,272 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 46 ms
54,144 KB
testcase_03 AC 43 ms
54,400 KB
testcase_04 AC 41 ms
54,656 KB
testcase_05 WA -
testcase_06 AC 151 ms
80,820 KB
testcase_07 AC 263 ms
91,000 KB
testcase_08 AC 67 ms
65,664 KB
testcase_09 AC 54 ms
62,848 KB
testcase_10 AC 297 ms
95,980 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 174 ms
83,844 KB
testcase_17 AC 401 ms
108,532 KB
testcase_18 AC 598 ms
130,648 KB
testcase_19 AC 597 ms
131,556 KB
testcase_20 AC 372 ms
105,192 KB
testcase_21 AC 379 ms
101,628 KB
testcase_22 AC 584 ms
125,140 KB
testcase_23 AC 249 ms
90,880 KB
testcase_24 AC 516 ms
117,784 KB
testcase_25 AC 196 ms
84,780 KB
testcase_26 AC 283 ms
94,520 KB
testcase_27 AC 511 ms
117,204 KB
testcase_28 AC 344 ms
101,588 KB
testcase_29 AC 588 ms
127,576 KB
testcase_30 AC 186 ms
84,460 KB
testcase_31 AC 152 ms
80,404 KB
testcase_32 AC 212 ms
86,924 KB
testcase_33 AC 474 ms
115,912 KB
testcase_34 AC 146 ms
80,760 KB
testcase_35 AC 263 ms
92,440 KB
testcase_36 AC 301 ms
97,444 KB
testcase_37 AC 548 ms
125,072 KB
testcase_38 AC 413 ms
109,844 KB
testcase_39 AC 148 ms
80,040 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 = []
mx = 0

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)
  mx = max(mx, b-1)

G[mx].append((n-1, (n-1 - mx)*2))

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