結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,272 KB
testcase_01 AC 36 ms
54,016 KB
testcase_02 AC 37 ms
54,528 KB
testcase_03 AC 35 ms
54,144 KB
testcase_04 AC 36 ms
54,656 KB
testcase_05 WA -
testcase_06 AC 148 ms
83,660 KB
testcase_07 AC 229 ms
101,376 KB
testcase_08 AC 51 ms
65,536 KB
testcase_09 AC 48 ms
63,488 KB
testcase_10 AC 240 ms
91,008 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 166 ms
88,432 KB
testcase_17 AC 394 ms
122,408 KB
testcase_18 AC 597 ms
149,092 KB
testcase_19 AC 605 ms
148,616 KB
testcase_20 AC 375 ms
120,860 KB
testcase_21 AC 357 ms
116,332 KB
testcase_22 AC 584 ms
144,856 KB
testcase_23 AC 230 ms
101,120 KB
testcase_24 AC 503 ms
139,264 KB
testcase_25 AC 177 ms
89,984 KB
testcase_26 AC 278 ms
103,992 KB
testcase_27 AC 508 ms
137,340 KB
testcase_28 AC 332 ms
115,732 KB
testcase_29 AC 628 ms
147,460 KB
testcase_30 AC 174 ms
90,152 KB
testcase_31 AC 152 ms
82,456 KB
testcase_32 AC 190 ms
94,464 KB
testcase_33 AC 492 ms
135,780 KB
testcase_34 AC 159 ms
83,904 KB
testcase_35 AC 254 ms
99,088 KB
testcase_36 AC 286 ms
107,632 KB
testcase_37 AC 536 ms
142,724 KB
testcase_38 AC 413 ms
123,896 KB
testcase_39 AC 135 ms
81,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
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()

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)
  L.add(b-1)
if n-1 not in L:
  L.add(n-1)

L = sorted(list(L))

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

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