結果

問題 No.807 umg tours
ユーザー hogeandfugahogeandfuga
提出日時 2019-04-01 22:17:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,148 ms / 4,000 ms
コード長 753 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 163,852 KB
最終ジャッジ日時 2024-05-02 23:44:48
合計ジャッジ時間 13,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,800 KB
testcase_01 AC 43 ms
62,464 KB
testcase_02 AC 46 ms
63,104 KB
testcase_03 AC 45 ms
62,080 KB
testcase_04 AC 43 ms
61,056 KB
testcase_05 AC 40 ms
61,056 KB
testcase_06 AC 48 ms
65,152 KB
testcase_07 AC 44 ms
62,080 KB
testcase_08 AC 34 ms
53,128 KB
testcase_09 AC 34 ms
53,248 KB
testcase_10 AC 35 ms
52,992 KB
testcase_11 AC 658 ms
136,200 KB
testcase_12 AC 683 ms
125,092 KB
testcase_13 AC 874 ms
143,880 KB
testcase_14 AC 433 ms
105,344 KB
testcase_15 AC 348 ms
97,984 KB
testcase_16 AC 918 ms
147,376 KB
testcase_17 AC 1,131 ms
161,260 KB
testcase_18 AC 1,131 ms
160,848 KB
testcase_19 AC 1,011 ms
156,980 KB
testcase_20 AC 614 ms
121,752 KB
testcase_21 AC 595 ms
124,960 KB
testcase_22 AC 288 ms
97,008 KB
testcase_23 AC 257 ms
93,448 KB
testcase_24 AC 529 ms
150,484 KB
testcase_25 AC 1,148 ms
163,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
import sys
input=sys.stdin.readline

n, m = map(int, input().split())
edge = [[] for _ in range(2*n)]
for i in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edge[a].append((c, b))
    edge[b].append((c, a))
    edge[a+n].append((c, b+n))
    edge[b+n].append((c, a+n))
    edge[a].append((0, b+n))
    edge[b].append((0, a+n))

dist = [float("inf")]*(2*n)
dist[0] = dist[n] = 0
pq = []
heappush(pq, (0, 0))
heappush(pq, (0, n))
while pq:
    d, cur = heappop(pq)
    if d > dist[cur]:
        continue

    for cost, to in edge[cur]:
        if dist[to] > d + cost:
            dist[to] = d + cost
            heappush(pq, (d+cost, to))

for i in range(n):
    print(dist[i]+dist[i+n])

0