結果

問題 No.807 umg tours
ユーザー noriocnorioc
提出日時 2024-09-03 03:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,197 ms / 4,000 ms
コード長 875 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 173,664 KB
最終ジャッジ日時 2024-12-15 19:39:27
合計ジャッジ時間 30,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
67,008 KB
testcase_01 AC 61 ms
66,964 KB
testcase_02 AC 85 ms
76,856 KB
testcase_03 AC 75 ms
74,600 KB
testcase_04 AC 55 ms
66,396 KB
testcase_05 AC 60 ms
67,736 KB
testcase_06 AC 89 ms
76,948 KB
testcase_07 AC 73 ms
74,612 KB
testcase_08 AC 39 ms
55,552 KB
testcase_09 AC 46 ms
61,984 KB
testcase_10 AC 48 ms
61,924 KB
testcase_11 AC 2,131 ms
146,464 KB
testcase_12 AC 1,634 ms
132,136 KB
testcase_13 AC 2,295 ms
152,308 KB
testcase_14 AC 895 ms
109,200 KB
testcase_15 AC 697 ms
100,620 KB
testcase_16 AC 2,249 ms
153,872 KB
testcase_17 AC 3,118 ms
173,636 KB
testcase_18 AC 2,924 ms
170,976 KB
testcase_19 AC 2,729 ms
165,272 KB
testcase_20 AC 1,054 ms
121,716 KB
testcase_21 AC 1,123 ms
121,800 KB
testcase_22 AC 445 ms
94,804 KB
testcase_23 AC 396 ms
90,468 KB
testcase_24 AC 1,437 ms
159,076 KB
testcase_25 AC 3,197 ms
173,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappush, heappop

INF = 1 << 60
N, M = map(int, input().split())
adj = defaultdict(list)
for _ in range(M):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    adj[a].append((b, c))
    adj[b].append((a, c))

dists = [[INF] * 2 for _ in range(N)]
q = [(0, 0, 0)]  # (距離, チケット使用回数, 頂点)
while q:
    d, cnt, v = heappop(q)
    if dists[v][cnt] <= d: continue
    dists[v][cnt] = d

    # チケットを使う
    if cnt == 0:
        for to, _ in adj[v]:
            if dists[to][1] <= d: continue
            heappush(q, (d, 1, to))

    # チケットを使わない
    for to, cost in adj[v]:
        if dists[to][cnt] <= d+cost: continue
        heappush(q, (d+cost, cnt, to))

dists[0][0] = dists[0][1] = 0
for i in range(N):
    ans = dists[i][0] + dists[i][1]
    print(ans)
0