結果

問題 No.807 umg tours
ユーザー cmycmy
提出日時 2022-08-18 01:29:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,805 ms / 4,000 ms
コード長 660 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 171,864 KB
最終ジャッジ日時 2024-10-05 08:40:44
合計ジャッジ時間 34,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
65,000 KB
testcase_01 AC 62 ms
63,744 KB
testcase_02 AC 81 ms
74,112 KB
testcase_03 AC 80 ms
70,272 KB
testcase_04 AC 61 ms
63,104 KB
testcase_05 AC 67 ms
65,664 KB
testcase_06 AC 82 ms
70,900 KB
testcase_07 AC 79 ms
69,504 KB
testcase_08 AC 44 ms
52,608 KB
testcase_09 AC 49 ms
59,136 KB
testcase_10 AC 51 ms
59,392 KB
testcase_11 AC 2,554 ms
145,244 KB
testcase_12 AC 1,919 ms
128,976 KB
testcase_13 AC 2,728 ms
148,164 KB
testcase_14 AC 1,110 ms
108,092 KB
testcase_15 AC 732 ms
99,556 KB
testcase_16 AC 2,772 ms
149,236 KB
testcase_17 AC 3,610 ms
167,664 KB
testcase_18 AC 3,436 ms
165,532 KB
testcase_19 AC 3,223 ms
161,148 KB
testcase_20 AC 1,145 ms
117,504 KB
testcase_21 AC 1,209 ms
120,036 KB
testcase_22 AC 532 ms
93,620 KB
testcase_23 AC 449 ms
90,328 KB
testcase_24 AC 1,210 ms
146,444 KB
testcase_25 AC 3,805 ms
171,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys

input = sys.stdin.readline

n, m = map(int, input().split())
e = [[] for _ in range(n)]
for _ in range(m):
    ai, bi, ci = map(int, input().split())
    e[ai-1].append((bi-1, ci))
    e[bi-1].append((ai-1, ci))

q = [(0, 0, 0)]
cost = [[None, None] for _ in range(n)]
cost[0][1] = 0
while q:
    c, f, x = heapq.heappop(q)
    if cost[x][f] is not None:
        continue
    cost[x][f] = c

    for y, cn in e[x]:
        if cost[y][f] is None:
            heapq.heappush(q, (c+cn, f, y))
        if not f and cost[y][1] is None:
            heapq.heappush(q, (c, 1, y))


for i in range(n):
    sys.stdout.write(f"{sum(cost[i])}\n")
0