結果

問題 No.807 umg tours
ユーザー H3PO4H3PO4
提出日時 2021-02-10 10:49:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,055 ms / 4,000 ms
コード長 978 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 167,464 KB
最終ジャッジ日時 2024-07-07 20:52:00
合計ジャッジ時間 11,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,088 KB
testcase_01 AC 42 ms
62,464 KB
testcase_02 AC 46 ms
63,056 KB
testcase_03 AC 42 ms
62,324 KB
testcase_04 AC 40 ms
61,704 KB
testcase_05 AC 39 ms
61,292 KB
testcase_06 AC 41 ms
63,520 KB
testcase_07 AC 41 ms
61,792 KB
testcase_08 AC 33 ms
53,784 KB
testcase_09 AC 34 ms
53,252 KB
testcase_10 AC 33 ms
54,784 KB
testcase_11 AC 563 ms
136,216 KB
testcase_12 AC 578 ms
125,768 KB
testcase_13 AC 771 ms
143,672 KB
testcase_14 AC 401 ms
106,628 KB
testcase_15 AC 316 ms
100,396 KB
testcase_16 AC 778 ms
147,736 KB
testcase_17 AC 988 ms
163,152 KB
testcase_18 AC 1,055 ms
161,940 KB
testcase_19 AC 951 ms
159,220 KB
testcase_20 AC 494 ms
123,116 KB
testcase_21 AC 505 ms
124,344 KB
testcase_22 AC 247 ms
97,092 KB
testcase_23 AC 208 ms
92,772 KB
testcase_24 AC 446 ms
151,868 KB
testcase_25 AC 1,001 ms
167,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappush, heappop

INF = 10 ** 14 + 1


def dijkstra(N, G, s):
    """https://tjkendev.github.io/procon-library/python/graph/dijkstra.html から拝借しています。"""
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist


input = sys.stdin.buffer.readline

N, M = map(int, input().split())

G = [[] for _ in range(2 * N)]
for i 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 + N].append((b + N, c))
    G[b + N].append((a + N, c))
    G[a].append((b + N, 0))
    G[b].append((a + N, 0))
dist = dijkstra(2 * N, G, 0)
ans = [dist[i] + dist[i + N] for i in range(N)]
ans[0] = 0
print(*ans, sep='\n')
0