結果

問題 No.807 umg tours
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-13 20:56:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,611 ms / 4,000 ms
コード長 882 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 171,924 KB
最終ジャッジ日時 2024-11-23 19:44:56
合計ジャッジ時間 17,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
65,408 KB
testcase_01 AC 69 ms
66,432 KB
testcase_02 AC 99 ms
75,904 KB
testcase_03 AC 88 ms
72,576 KB
testcase_04 AC 65 ms
65,024 KB
testcase_05 AC 81 ms
70,528 KB
testcase_06 AC 103 ms
76,544 KB
testcase_07 AC 84 ms
72,320 KB
testcase_08 AC 43 ms
52,736 KB
testcase_09 AC 50 ms
59,392 KB
testcase_10 AC 52 ms
60,672 KB
testcase_11 AC 1,120 ms
151,528 KB
testcase_12 AC 913 ms
128,400 KB
testcase_13 AC 1,274 ms
151,148 KB
testcase_14 AC 625 ms
107,276 KB
testcase_15 AC 506 ms
100,476 KB
testcase_16 AC 1,327 ms
153,556 KB
testcase_17 AC 1,576 ms
170,228 KB
testcase_18 AC 1,515 ms
169,696 KB
testcase_19 AC 1,406 ms
164,764 KB
testcase_20 AC 730 ms
123,228 KB
testcase_21 AC 792 ms
125,956 KB
testcase_22 AC 398 ms
97,580 KB
testcase_23 AC 319 ms
93,708 KB
testcase_24 AC 759 ms
154,916 KB
testcase_25 AC 1,611 ms
171,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

def sol():
    N, M = map(int, input().split())
    edges = [[] for _ in range(2 * N)]

    for _ in range(M):
        fr, to, cost = map(int, input().split())
        fr -= 1
        to -= 1
        edges[fr].append((to, cost))
        edges[to].append((fr, cost))
        edges[fr + N].append((to + N, cost))
        edges[to + N].append((fr + N, cost))
        edges[fr].append((to + N, 0))
        edges[to].append((fr + N, 0))

    que = [(0, 0)]
    minDist = [float('inf')] * (2 * N)
    while que:
        dist, now = heappop(que)
        if minDist[now] <= dist:
            continue
        minDist[now] = dist
        for to, cost in edges[now]:
            d = dist + cost
            if minDist[to] > d:
                heappush(que, (d, to))

    print(0)
    for i in range(1, N):
        print(minDist[i] + minDist[i + N])

sol()
0