結果

問題 No.807 umg tours
ユーザー cmycmy
提出日時 2022-05-23 18:48:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 859 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 142,352 KB
最終ジャッジ日時 2024-09-20 13:20:09
合計ジャッジ時間 18,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
63,616 KB
testcase_01 WA -
testcase_02 AC 89 ms
76,672 KB
testcase_03 AC 81 ms
70,144 KB
testcase_04 WA -
testcase_05 AC 58 ms
65,536 KB
testcase_06 AC 80 ms
74,368 KB
testcase_07 AC 73 ms
70,528 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 44 ms
59,008 KB
testcase_10 AC 48 ms
60,288 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 589 ms
103,532 KB
testcase_21 AC 615 ms
105,496 KB
testcase_22 AC 313 ms
88,032 KB
testcase_23 AC 277 ms
85,664 KB
testcase_24 AC 728 ms
130,464 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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)]
c1 = [None] * n
while q:
    c, x = heapq.heappop(q)
    if c1[x] is not None:
        continue
    c1[x] = c
    for y, cn in e[x]:
        if c1[y] is not None:
            continue
        heapq.heappush(q, (c+cn, y))

q = [(0, 0, 0)]
c2 = [None] * n
while q:
    c, x, cut = heapq.heappop(q)
    if c2[x] is not None:
        continue
    c2[x] = (c, cut)
    for y, cn in e[x]:
        if c2[y] is not None:
            continue
        if cn > cut:
            heapq.heappush(q, (c+cut, y, cn))
        else:
            heapq.heappush(q, (c+cn, y, cut))

for i in range(n):
    print(c1[i] + c2[i][0])
0