結果

問題 No.1995 CHIKA Road
ユーザー titan23titan23
提出日時 2022-07-01 23:10:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,112 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 206,828 KB
最終ジャッジ日時 2024-05-04 17:39:44
合計ジャッジ時間 18,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,528 KB
testcase_01 AC 48 ms
53,888 KB
testcase_02 AC 48 ms
54,528 KB
testcase_03 AC 49 ms
54,016 KB
testcase_04 AC 49 ms
54,400 KB
testcase_05 WA -
testcase_06 AC 198 ms
84,352 KB
testcase_07 AC 347 ms
101,828 KB
testcase_08 AC 62 ms
65,920 KB
testcase_09 AC 57 ms
63,744 KB
testcase_10 AC 526 ms
113,264 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 228 ms
90,088 KB
testcase_17 AC 652 ms
134,960 KB
testcase_18 AC 974 ms
169,888 KB
testcase_19 AC 965 ms
169,860 KB
testcase_20 AC 561 ms
126,116 KB
testcase_21 AC 551 ms
121,532 KB
testcase_22 AC 911 ms
162,284 KB
testcase_23 AC 347 ms
102,336 KB
testcase_24 AC 810 ms
153,696 KB
testcase_25 AC 265 ms
93,292 KB
testcase_26 AC 418 ms
107,892 KB
testcase_27 AC 784 ms
152,092 KB
testcase_28 AC 521 ms
122,020 KB
testcase_29 AC 969 ms
168,648 KB
testcase_30 AC 257 ms
92,032 KB
testcase_31 AC 203 ms
83,840 KB
testcase_32 AC 288 ms
95,372 KB
testcase_33 AC 773 ms
149,480 KB
testcase_34 AC 207 ms
85,564 KB
testcase_35 AC 391 ms
104,676 KB
testcase_36 AC 430 ms
113,444 KB
testcase_37 AC 862 ms
160,668 KB
testcase_38 AC 656 ms
136,884 KB
testcase_39 AC 186 ms
83,016 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)
st = defaultdict(set)
L = set()
E = []
mx = 0

for _ in range(m):
  a, b = map(int, input().split())
  G[a-1].append((b-1, 2*b-2*a-1))
  st[a-1].add(b-1)
  L.add((a-1, b-1))
  E.append(a-1)
  E.append(b-1)
  mx = max(mx, b-1)
if (mx, n-1) not in L:
  L.add((mx, n-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
  if (now, nxt) not in st[now]:
    G[now].append((nxt, dist))
for k in G.keys():
  G[k].sort()

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