結果

問題 No.807 umg tours
ユーザー cmycmy
提出日時 2022-05-23 21:50:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,360 ms / 4,000 ms
コード長 660 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 172,128 KB
最終ジャッジ日時 2024-09-20 13:22:27
合計ジャッジ時間 28,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
65,024 KB
testcase_01 AC 61 ms
64,128 KB
testcase_02 AC 82 ms
73,984 KB
testcase_03 AC 78 ms
70,144 KB
testcase_04 AC 59 ms
63,104 KB
testcase_05 AC 65 ms
65,664 KB
testcase_06 AC 79 ms
71,168 KB
testcase_07 AC 74 ms
69,760 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 AC 46 ms
59,264 KB
testcase_10 AC 48 ms
59,376 KB
testcase_11 AC 2,063 ms
145,372 KB
testcase_12 AC 1,577 ms
129,500 KB
testcase_13 AC 2,293 ms
148,428 KB
testcase_14 AC 934 ms
108,344 KB
testcase_15 AC 640 ms
99,748 KB
testcase_16 AC 2,394 ms
149,604 KB
testcase_17 AC 2,983 ms
167,880 KB
testcase_18 AC 2,883 ms
166,132 KB
testcase_19 AC 2,771 ms
160,880 KB
testcase_20 AC 957 ms
117,504 KB
testcase_21 AC 1,061 ms
120,192 KB
testcase_22 AC 446 ms
93,752 KB
testcase_23 AC 515 ms
90,728 KB
testcase_24 AC 1,235 ms
146,800 KB
testcase_25 AC 3,360 ms
172,128 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