結果

問題 No.807 umg tours
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-06 17:45:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,398 ms / 4,000 ms
コード長 1,008 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 174,704 KB
最終ジャッジ日時 2024-07-23 02:55:04
合計ジャッジ時間 16,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,020 KB
testcase_01 AC 47 ms
60,896 KB
testcase_02 AC 50 ms
63,608 KB
testcase_03 AC 52 ms
64,420 KB
testcase_04 AC 45 ms
60,948 KB
testcase_05 AC 47 ms
61,112 KB
testcase_06 AC 49 ms
62,348 KB
testcase_07 AC 49 ms
63,044 KB
testcase_08 AC 39 ms
54,564 KB
testcase_09 AC 38 ms
53,636 KB
testcase_10 AC 39 ms
54,748 KB
testcase_11 AC 740 ms
139,608 KB
testcase_12 AC 794 ms
130,780 KB
testcase_13 AC 1,057 ms
150,168 KB
testcase_14 AC 506 ms
108,204 KB
testcase_15 AC 382 ms
101,404 KB
testcase_16 AC 1,033 ms
153,732 KB
testcase_17 AC 1,315 ms
170,052 KB
testcase_18 AC 1,309 ms
169,964 KB
testcase_19 AC 1,235 ms
166,812 KB
testcase_20 AC 631 ms
125,484 KB
testcase_21 AC 641 ms
127,160 KB
testcase_22 AC 294 ms
97,444 KB
testcase_23 AC 270 ms
93,232 KB
testcase_24 AC 548 ms
154,564 KB
testcase_25 AC 1,398 ms
174,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
INF = 10**18
def dijkstra(s, edge):
    n = len(edge)
    dist = [INF]*n
    dist[s] = 0
    edgelist = []
    heapq.heappush(edgelist,(dist[s], s))
    while edgelist:
        minedge = heapq.heappop(edgelist)
        if dist[minedge[1]] < minedge[0]:
            continue
        v = minedge[1]
        for e in edge[v]:
            if dist[e[1]] > dist[v]+e[0]:
                dist[e[1]] = dist[v]+e[0]
                heapq.heappush(edgelist,(dist[e[1]], e[1]))
    return dist

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, m = map(int, input().split())
G = [[] for i in range(2*n)]
for i in range(m):
    a, b,c = map(int, input().split())
    a, b = a-1, b-1
    G[a].append((c, b))
    G[b].append((c, a))
    G[a].append((0, b+n))
    G[b].append((0, a+n))
    G[a+n].append((c, b+n))
    G[b+n].append((c, a+n))
for i in range(n):
    G[i].append((0, i+n))
dist = dijkstra(0, G)
for i in range(n):
    ans = dist[i]+dist[i+n]
    print(ans)
0