結果

問題 No.1995 CHIKA Road
ユーザー titan23titan23
提出日時 2022-07-01 23:03:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,001 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 186,396 KB
最終ジャッジ日時 2024-05-04 17:30:40
合計ジャッジ時間 16,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 45 ms
54,400 KB
testcase_02 AC 44 ms
53,888 KB
testcase_03 AC 43 ms
54,528 KB
testcase_04 AC 44 ms
54,912 KB
testcase_05 WA -
testcase_06 AC 225 ms
83,200 KB
testcase_07 AC 299 ms
101,116 KB
testcase_08 AC 58 ms
65,280 KB
testcase_09 AC 55 ms
63,488 KB
testcase_10 AC 372 ms
91,212 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 210 ms
88,156 KB
testcase_17 AC 529 ms
123,528 KB
testcase_18 AC 832 ms
148,116 KB
testcase_19 AC 832 ms
148,792 KB
testcase_20 AC 480 ms
120,336 KB
testcase_21 AC 455 ms
115,440 KB
testcase_22 AC 786 ms
144,080 KB
testcase_23 AC 309 ms
101,504 KB
testcase_24 AC 689 ms
138,640 KB
testcase_25 AC 232 ms
89,984 KB
testcase_26 AC 358 ms
103,960 KB
testcase_27 AC 692 ms
136,956 KB
testcase_28 AC 470 ms
115,232 KB
testcase_29 AC 817 ms
147,568 KB
testcase_30 AC 225 ms
89,600 KB
testcase_31 AC 157 ms
82,048 KB
testcase_32 AC 249 ms
94,208 KB
testcase_33 AC 704 ms
135,340 KB
testcase_34 AC 176 ms
83,448 KB
testcase_35 AC 325 ms
98,944 KB
testcase_36 AC 377 ms
106,740 KB
testcase_37 AC 751 ms
141,024 KB
testcase_38 AC 579 ms
123,400 KB
testcase_39 AC 154 ms
81,664 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))
for k in G.keys():
  G[k].sort()

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