結果

問題 No.807 umg tours
ユーザー ntudantuda
提出日時 2021-12-02 20:12:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,229 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 171,480 KB
最終ジャッジ日時 2024-07-05 02:04:14
合計ジャッジ時間 22,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,304 KB
testcase_01 AC 52 ms
61,824 KB
testcase_02 AC 66 ms
67,200 KB
testcase_03 AC 63 ms
66,176 KB
testcase_04 AC 47 ms
54,784 KB
testcase_05 AC 55 ms
62,976 KB
testcase_06 AC 63 ms
65,792 KB
testcase_07 AC 60 ms
65,792 KB
testcase_08 AC 42 ms
52,736 KB
testcase_09 AC 43 ms
53,632 KB
testcase_10 AC 44 ms
53,888 KB
testcase_11 AC 1,116 ms
143,360 KB
testcase_12 AC 1,079 ms
131,176 KB
testcase_13 AC 1,423 ms
152,728 KB
testcase_14 AC 671 ms
109,660 KB
testcase_15 AC 573 ms
103,668 KB
testcase_16 AC 1,598 ms
159,380 KB
testcase_17 AC 1,825 ms
171,024 KB
testcase_18 AC 1,814 ms
171,268 KB
testcase_19 AC 1,917 ms
171,480 KB
testcase_20 AC 952 ms
127,748 KB
testcase_21 AC 1,017 ms
131,500 KB
testcase_22 AC 472 ms
98,348 KB
testcase_23 AC 431 ms
94,544 KB
testcase_24 TLE -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
ABC = [list(map(int,input().split())) for _ in range(M)]
E = [[] for _ in range(N)]
for a,b,c in ABC:
    E[a-1].append([b-1,c])
    E[b-1].append([a-1,c])
import heapq
D = [float('inf')] * N
D2 = [float('inf')] * N

#普通のダイクストラ
def dijkstra():
    D[0] = 0
    q = []
    heapq.heappush(q, [0, 0])
    while len(q) > 0:
        # ヒープから取り出し
        _, u = heapq.heappop(q)
        for i in E[u]:
            a,b = i
            if D[a] > D[u] + b:
                # 頂点までのコストが更新できれば更新してヒープに登録
                D[a] = D[u] + b
                heapq.heappush(q, [D[a], a])
    return D

#コスト-最大値の最小を取っていくダイクストラ
def dijkstra2():
    D2[0] = 0
    q = []
    heapq.heappush(q, [0, 0]) #コスト、頂点
    while len(q) > 0:
        # ヒープから取り出し
        _, u = heapq.heappop(q)
        for i in E[u]:
            a,b = i
            tmp = min(D[u],D2[u] + b)
            if D2[a] > tmp:
                D2[a] = tmp
                heapq.heappush(q, [D2[a], a])

    return D2

dijkstra()
dijkstra2()
ans = [0] * N
for i in range(N):
    print(D[i] + D2[i])
0