結果

問題 No.807 umg tours
ユーザー convexineqconvexineq
提出日時 2021-04-06 08:53:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,131 ms / 4,000 ms
コード長 820 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 167,692 KB
最終ジャッジ日時 2024-06-10 19:44:26
合計ジャッジ時間 12,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
62,044 KB
testcase_01 AC 45 ms
63,384 KB
testcase_02 AC 52 ms
66,188 KB
testcase_03 AC 49 ms
65,232 KB
testcase_04 AC 43 ms
63,048 KB
testcase_05 AC 43 ms
62,844 KB
testcase_06 AC 51 ms
66,152 KB
testcase_07 AC 48 ms
64,132 KB
testcase_08 AC 34 ms
53,552 KB
testcase_09 AC 36 ms
54,664 KB
testcase_10 AC 37 ms
54,252 KB
testcase_11 AC 779 ms
136,592 KB
testcase_12 AC 657 ms
124,236 KB
testcase_13 AC 840 ms
143,548 KB
testcase_14 AC 452 ms
105,584 KB
testcase_15 AC 347 ms
98,892 KB
testcase_16 AC 871 ms
147,036 KB
testcase_17 AC 1,110 ms
162,152 KB
testcase_18 AC 1,097 ms
161,200 KB
testcase_19 AC 1,019 ms
158,716 KB
testcase_20 AC 628 ms
119,272 KB
testcase_21 AC 587 ms
121,264 KB
testcase_22 AC 280 ms
95,384 KB
testcase_23 AC 238 ms
91,272 KB
testcase_24 AC 500 ms
151,372 KB
testcase_25 AC 1,131 ms
167,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
def dijkstra(g,start):
    n = len(g)
    INF = 1<<61
    dist = [INF]*(n) #startからの最短距離
    dist[start] = 0
    q = [(0,start)] #(そこまでの距離、点)
    while q:
        dv,v = heappop(q)
        if dist[v] < dv: continue
        for to, cost in g[v]:
            if dv + cost < dist[to]:
                dist[to] = dv + cost
                heappush(q, (dist[to], to))
    return dist

n,m = map(int,input().split())
g = [[] for _ in range(2*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))
    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))
    
dist = dijkstra(g,0)
for i in range(n):
    if i: print(dist[i] + dist[i+n])
    else: print(0)
0