結果

問題 No.1995 CHIKA Road
ユーザー titan23titan23
提出日時 2022-07-01 23:15:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,076 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 195,008 KB
最終ジャッジ日時 2024-05-04 17:45:30
合計ジャッジ時間 14,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,184 KB
testcase_01 AC 40 ms
55,308 KB
testcase_02 AC 41 ms
55,180 KB
testcase_03 AC 38 ms
55,176 KB
testcase_04 AC 38 ms
56,628 KB
testcase_05 WA -
testcase_06 AC 155 ms
85,216 KB
testcase_07 AC 256 ms
101,376 KB
testcase_08 AC 50 ms
65,752 KB
testcase_09 AC 47 ms
65,168 KB
testcase_10 AC 348 ms
95,360 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 181 ms
89,832 KB
testcase_17 AC 464 ms
131,936 KB
testcase_18 AC 714 ms
167,684 KB
testcase_19 AC 713 ms
168,272 KB
testcase_20 AC 417 ms
127,388 KB
testcase_21 AC 381 ms
122,868 KB
testcase_22 AC 657 ms
161,716 KB
testcase_23 AC 268 ms
101,564 KB
testcase_24 AC 620 ms
150,652 KB
testcase_25 AC 207 ms
92,656 KB
testcase_26 AC 311 ms
107,944 KB
testcase_27 AC 589 ms
149,356 KB
testcase_28 AC 392 ms
123,192 KB
testcase_29 AC 708 ms
164,672 KB
testcase_30 AC 191 ms
91,892 KB
testcase_31 AC 138 ms
83,784 KB
testcase_32 AC 228 ms
98,148 KB
testcase_33 AC 564 ms
148,572 KB
testcase_34 AC 173 ms
85,500 KB
testcase_35 AC 296 ms
104,160 KB
testcase_36 AC 325 ms
112,536 KB
testcase_37 AC 646 ms
159,436 KB
testcase_38 AC 505 ms
133,828 KB
testcase_39 AC 143 ms
83,532 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]
  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