結果

問題 No.807 umg tours
ユーザー noriocnorioc
提出日時 2024-09-03 03:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,699 ms / 4,000 ms
コード長 875 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 173,788 KB
最終ジャッジ日時 2024-09-03 03:02:25
合計ジャッジ時間 34,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
66,508 KB
testcase_01 AC 65 ms
67,288 KB
testcase_02 AC 92 ms
76,792 KB
testcase_03 AC 83 ms
74,232 KB
testcase_04 AC 62 ms
66,672 KB
testcase_05 AC 66 ms
67,708 KB
testcase_06 AC 96 ms
76,888 KB
testcase_07 AC 83 ms
74,784 KB
testcase_08 AC 44 ms
55,800 KB
testcase_09 AC 52 ms
63,348 KB
testcase_10 AC 52 ms
63,016 KB
testcase_11 AC 2,499 ms
146,216 KB
testcase_12 AC 1,869 ms
132,136 KB
testcase_13 AC 2,651 ms
152,048 KB
testcase_14 AC 1,136 ms
109,332 KB
testcase_15 AC 825 ms
100,664 KB
testcase_16 AC 2,791 ms
153,860 KB
testcase_17 AC 3,603 ms
173,788 KB
testcase_18 AC 3,404 ms
170,716 KB
testcase_19 AC 3,166 ms
165,144 KB
testcase_20 AC 1,215 ms
121,968 KB
testcase_21 AC 1,114 ms
121,944 KB
testcase_22 AC 535 ms
94,948 KB
testcase_23 AC 429 ms
90,344 KB
testcase_24 AC 1,480 ms
158,496 KB
testcase_25 AC 3,699 ms
173,624 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