結果

問題 No.807 umg tours
ユーザー silversmithsilversmith
提出日時 2019-04-07 13:46:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,508 ms / 4,000 ms
コード長 977 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 169,500 KB
最終ジャッジ日時 2024-11-23 19:24:26
合計ジャッジ時間 17,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
63,104 KB
testcase_01 AC 65 ms
64,768 KB
testcase_02 AC 69 ms
66,048 KB
testcase_03 AC 72 ms
65,664 KB
testcase_04 AC 61 ms
62,976 KB
testcase_05 AC 64 ms
64,128 KB
testcase_06 AC 74 ms
67,968 KB
testcase_07 AC 66 ms
65,152 KB
testcase_08 AC 51 ms
55,040 KB
testcase_09 AC 51 ms
55,424 KB
testcase_10 AC 52 ms
55,680 KB
testcase_11 AC 899 ms
137,600 KB
testcase_12 AC 865 ms
126,848 KB
testcase_13 AC 1,141 ms
145,576 KB
testcase_14 AC 568 ms
105,952 KB
testcase_15 AC 439 ms
99,456 KB
testcase_16 AC 1,175 ms
149,836 KB
testcase_17 AC 1,467 ms
164,832 KB
testcase_18 AC 1,490 ms
164,388 KB
testcase_19 AC 1,391 ms
159,624 KB
testcase_20 AC 714 ms
118,736 KB
testcase_21 AC 732 ms
120,612 KB
testcase_22 AC 371 ms
95,252 KB
testcase_23 AC 320 ms
91,516 KB
testcase_24 AC 661 ms
157,528 KB
testcase_25 AC 1,508 ms
169,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import sys
import fileinput
import heapq

def main(file):
    N, M = map(int, file.readline().strip().split(' '))
    e=[[] for i in range(2 * N)]
    for i in range(M):
        v1, v2, cost = [int(x) for x in file.readline().strip().split(' ')]
        e[v1-1].append((v2-1,cost))
        e[v2-1].append((v1-1,cost))
        e[v1-1 + N].append((v2-1 + N,cost))
        e[v2-1 + N].append((v1-1 + N,cost))
        e[v1-1].append((v2-1 + N,0))
        e[v2-1].append((v1-1 + N,0))

    d = [10**(9 + 6)] * (2*N)
    d[0] = 0
    d[N] = 0
    h = []
    heapq.heappush(h, (0,0))
    heapq.heappush(h, (0,N))
    while h:
        c, j = heapq.heappop(h)
        if d[j]<c: continue
        for i,cost in e[j]:
            alt = c + cost
            if d[i] < alt : continue
            d[i] = alt
            heapq.heappush(h,(alt, i))


    print(0)
    for i in range(1,N):
        print(d[i] + d[i+N])
 
if __name__ == "__main__":
    file = sys.stdin
    main(file)
0