結果

問題 No.1995 CHIKA Road
ユーザー titan23titan23
提出日時 2022-07-01 23:19:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,102 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 195,080 KB
最終ジャッジ日時 2024-05-04 17:49:43
合計ジャッジ時間 13,940 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,528 KB
testcase_01 AC 37 ms
54,400 KB
testcase_02 AC 39 ms
54,528 KB
testcase_03 AC 41 ms
54,400 KB
testcase_04 AC 42 ms
54,528 KB
testcase_05 WA -
testcase_06 AC 166 ms
84,644 KB
testcase_07 AC 284 ms
101,688 KB
testcase_08 AC 51 ms
65,152 KB
testcase_09 AC 48 ms
64,000 KB
testcase_10 AC 339 ms
95,608 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 176 ms
89,804 KB
testcase_17 AC 457 ms
131,440 KB
testcase_18 AC 694 ms
166,948 KB
testcase_19 AC 723 ms
167,896 KB
testcase_20 AC 410 ms
126,504 KB
testcase_21 AC 390 ms
122,096 KB
testcase_22 AC 659 ms
161,736 KB
testcase_23 AC 267 ms
102,468 KB
testcase_24 AC 610 ms
149,384 KB
testcase_25 AC 206 ms
92,032 KB
testcase_26 AC 326 ms
108,216 KB
testcase_27 AC 585 ms
149,092 KB
testcase_28 AC 384 ms
121,876 KB
testcase_29 AC 693 ms
165,060 KB
testcase_30 AC 193 ms
91,904 KB
testcase_31 AC 139 ms
83,392 KB
testcase_32 AC 228 ms
97,152 KB
testcase_33 AC 559 ms
148,824 KB
testcase_34 AC 155 ms
85,512 KB
testcase_35 AC 288 ms
104,240 KB
testcase_36 AC 322 ms
112,268 KB
testcase_37 AC 642 ms
158,992 KB
testcase_38 AC 494 ms
133,828 KB
testcase_39 AC 136 ms
83,292 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)
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)
  E.append(a-1)
  E.append(b-1)
  mx = max(mx, b-1)
if n-1 not in st[mx]:
  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]
  if now == nxt: continue
  dist = (E[i+1] - E[i]) * 2
  if nxt not in st[now]:
    st[now].add(nxt)
    G[now].append((nxt, dist))
for k in G.keys():
  G[k].sort()

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