結果

問題 No.807 umg tours
ユーザー tobusakanatobusakana
提出日時 2022-12-01 21:13:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,658 ms / 4,000 ms
コード長 907 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 235,952 KB
最終ジャッジ日時 2024-10-09 01:44:37
合計ジャッジ時間 18,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,568 KB
testcase_01 AC 48 ms
61,696 KB
testcase_02 AC 51 ms
63,616 KB
testcase_03 AC 49 ms
62,720 KB
testcase_04 AC 49 ms
61,952 KB
testcase_05 AC 48 ms
62,080 KB
testcase_06 AC 53 ms
63,872 KB
testcase_07 AC 54 ms
63,616 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 39 ms
53,120 KB
testcase_11 AC 999 ms
195,552 KB
testcase_12 AC 916 ms
165,188 KB
testcase_13 AC 1,226 ms
201,572 KB
testcase_14 AC 592 ms
129,768 KB
testcase_15 AC 467 ms
118,912 KB
testcase_16 AC 1,350 ms
211,320 KB
testcase_17 AC 1,658 ms
232,720 KB
testcase_18 AC 1,568 ms
232,004 KB
testcase_19 AC 1,466 ms
228,096 KB
testcase_20 AC 764 ms
152,704 KB
testcase_21 AC 796 ms
155,616 KB
testcase_22 AC 377 ms
110,256 KB
testcase_23 AC 324 ms
103,160 KB
testcase_24 AC 749 ms
206,600 KB
testcase_25 AC 1,567 ms
235,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N,M = map(int,readline().split())
G = [[] for i in range(2 * N)]
for _ in range(M):
    a,b,c = map(int,readline().split())
    a -= 1
    b -= 1
    G[a].append([b, c])
    G[b].append([a, c])
    G[a].append([b + N, 0])
    G[b].append([a + N, 0])
    G[a + N].append([b + N, c])
    G[b + N].append([a + N, c])

INF = 1 << 60
dist = [0] * (2 * N)
best = [INF] * (2 * N)
visited = [False] * (2 * N)
import heapq as hq
q = []
hq.heappush(q, (0, 0))
while q:
    d,v = hq.heappop(q)
    if visited[v]:
        continue
    visited[v] = True
    dist[v] = d
    for child, cost in G[v]:
        if visited[child]:
            continue
        if best[child] <= d + cost:
            continue
        best[child] = d + cost
        hq.heappush(q, (d + cost, child))
        
print(0)
for i in range(1, N):
    print(dist[i] + dist[i + N])
    
    
            





0