結果

問題 No.807 umg tours
ユーザー hedwig100hedwig100
提出日時 2020-04-23 23:13:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 874 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 119,672 KB
最終ジャッジ日時 2024-10-14 02:40:02
合計ジャッジ時間 12,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 56 ms
62,976 KB
testcase_03 AC 55 ms
61,952 KB
testcase_04 AC 45 ms
53,632 KB
testcase_05 AC 46 ms
54,400 KB
testcase_06 AC 54 ms
61,952 KB
testcase_07 AC 54 ms
62,080 KB
testcase_08 AC 42 ms
52,736 KB
testcase_09 AC 42 ms
52,864 KB
testcase_10 AC 42 ms
52,864 KB
testcase_11 AC 589 ms
101,376 KB
testcase_12 AC 609 ms
101,088 KB
testcase_13 AC 754 ms
109,148 KB
testcase_14 AC 454 ms
91,448 KB
testcase_15 AC 361 ms
88,416 KB
testcase_16 AC 812 ms
111,844 KB
testcase_17 AC 912 ms
117,888 KB
testcase_18 AC 910 ms
117,240 KB
testcase_19 AC 950 ms
117,236 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 410 ms
113,244 KB
testcase_25 AC 957 ms
119,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heapify,heappush,heappop
input = sys.stdin.readline
INF = 10 ** 9 + 7

n,m = map(int,input().split())
G = [[] for _ in range(n)]
for _ in range(m):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append((b,c))
    G[b].append((a,c))

dist = [INF] * n
dist[0] = 0

q = [(0,0)]
heapify(q)

while q:
    d,v = heappop(q)
    if dist[v] < d:
        continue
    for e,cost in G[v]:
        if dist[e] > dist[v] + cost:
            dist[e] = dist[v] + cost
            heappush(q,(dist[e],e))

dist1 = [INF] * n
dist1[0] = 0
heappush(q,(0,0))
while q:
    d,v = heappop(q)
    if dist1[v] < d:
        continue
    for e,cost in G[v]:
        m = min(dist[v],dist1[v] + cost)
        if dist1[e] > m:
            dist1[e] = m
            heappush(q,(dist1[e],e))

print('\n'.join(map(str,[dist[i] + dist1[i] for i in range(n)])))
0