結果

問題 No.807 umg tours
ユーザー ああいいああいい
提出日時 2021-12-29 18:40:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,999 ms / 4,000 ms
コード長 1,130 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 144,788 KB
最終ジャッジ日時 2024-10-04 06:45:24
合計ジャッジ時間 20,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,684 KB
testcase_01 AC 53 ms
65,192 KB
testcase_02 AC 55 ms
67,632 KB
testcase_03 AC 51 ms
66,120 KB
testcase_04 AC 44 ms
62,180 KB
testcase_05 AC 47 ms
63,700 KB
testcase_06 AC 55 ms
66,228 KB
testcase_07 AC 51 ms
64,760 KB
testcase_08 AC 34 ms
53,072 KB
testcase_09 AC 35 ms
54,860 KB
testcase_10 AC 36 ms
54,568 KB
testcase_11 AC 862 ms
107,736 KB
testcase_12 AC 1,205 ms
114,340 KB
testcase_13 AC 1,365 ms
121,472 KB
testcase_14 AC 727 ms
98,200 KB
testcase_15 AC 503 ms
92,284 KB
testcase_16 AC 1,271 ms
122,696 KB
testcase_17 AC 1,837 ms
136,752 KB
testcase_18 AC 1,753 ms
135,080 KB
testcase_19 AC 1,654 ms
131,804 KB
testcase_20 AC 928 ms
108,300 KB
testcase_21 AC 898 ms
109,740 KB
testcase_22 AC 440 ms
89,092 KB
testcase_23 AC 374 ms
87,108 KB
testcase_24 AC 981 ms
137,808 KB
testcase_25 AC 1,999 ms
144,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for _ in range(N + 1)]
for _ in range(M):
    a,b,c = map(int,input().split())
    G[a].append((b,c))
    G[b].append((a,c))

import heapq
C = 10 ** 16
dist = [C] * (N + 1)
dist[1] = 0
q = []
heapq.heapify(q)
heapq.heappush(q,(0,1))
while len(q):
    d,index = heapq.heappop(q)
    if d > dist[index]:
        continue
    for v,c in G[index]:
        if dist[v] > d + c:
            dist[v] = d + c
            heapq.heappush(q,(d+c,v))
dist2 = [C] * (N + 1)
dist2[1] = 0
heapq.heappush(q,(0,1,False))
while len(q):
    d,index,flag = heapq.heappop(q)
    if flag and d > dist2[index]:
        continue
    for v,c in G[index]:
        if flag:
            if dist2[v] > dist2[index] + c:
                dist2[v] = dist2[index] + c
                heapq.heappush(q,(d + c,v,True))
        else:
            if dist2[v] > dist[index]:
                dist2[v] = dist[index]
                heapq.heappush(q,(dist[index],v,True))
            if dist[v] >= dist[index] + c:
                heapq.heappush(q,(dist[index] + c,v,False))
for i in range(N):
    print(dist[i+1] + dist2[i+1])
    
0