結果

問題 No.807 umg tours
ユーザー ronpooronpoo
提出日時 2023-09-05 16:09:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,859 ms / 4,000 ms
コード長 926 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 198,524 KB
最終ジャッジ日時 2024-06-23 11:40:41
合計ジャッジ時間 25,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,440 KB
testcase_01 AC 54 ms
62,496 KB
testcase_02 AC 56 ms
64,768 KB
testcase_03 AC 54 ms
64,256 KB
testcase_04 AC 47 ms
61,440 KB
testcase_05 AC 48 ms
62,080 KB
testcase_06 AC 54 ms
64,768 KB
testcase_07 AC 55 ms
64,384 KB
testcase_08 AC 45 ms
52,608 KB
testcase_09 AC 39 ms
53,376 KB
testcase_10 AC 40 ms
53,632 KB
testcase_11 AC 1,261 ms
152,592 KB
testcase_12 AC 1,481 ms
145,684 KB
testcase_13 AC 1,899 ms
166,080 KB
testcase_14 AC 816 ms
117,568 KB
testcase_15 AC 617 ms
108,452 KB
testcase_16 AC 1,801 ms
171,928 KB
testcase_17 AC 2,558 ms
193,224 KB
testcase_18 AC 2,480 ms
191,524 KB
testcase_19 AC 2,834 ms
187,420 KB
testcase_20 AC 1,193 ms
144,472 KB
testcase_21 AC 1,282 ms
149,452 KB
testcase_22 AC 580 ms
106,692 KB
testcase_23 AC 497 ms
99,844 KB
testcase_24 AC 1,230 ms
182,404 KB
testcase_25 AC 2,859 ms
198,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappop, heappush
input = sys.stdin.readline

N, M = map(int, input().split())
ABC = [list(map(int, input().split())) for _ in range(M)]

G = [[] for _ in range(N)]
for i in range(M):
    a, b, c = ABC[i]
    a -= 1
    b -= 1
    G[a].append([b, c])
    G[b].append([a, c])
    
dist = [[float('inf')]*2 for _ in range(N)]
dist[0][0] = 0

# dijkstra
que = []
heappush(que, (0, 0, 0))    
while que:
    cost, now, used = heappop(que)
    if dist[now][used] < cost:
        continue
    for nxt, d in G[now]:
        new_cost = dist[now][used] + d
        if dist[nxt][used] > new_cost:
            dist[nxt][used] = new_cost            
            heappush(que, (new_cost, nxt, used))
        if used == 0 and dist[nxt][1] > dist[now][0]:
            dist[nxt][1] = dist[now][0]
            heappush(que, (dist[nxt][1], nxt, 1))

print(0)
for i in range(1, N):
    print(dist[i][0] + dist[i][1])
0