結果

問題 No.807 umg tours
ユーザー silversmithsilversmith
提出日時 2019-04-07 13:46:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,403 ms / 4,000 ms
コード長 977 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 169,488 KB
最終ジャッジ日時 2024-05-02 23:45:51
合計ジャッジ時間 16,981 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
62,976 KB
testcase_01 AC 59 ms
64,696 KB
testcase_02 AC 63 ms
66,160 KB
testcase_03 AC 62 ms
65,684 KB
testcase_04 AC 55 ms
62,720 KB
testcase_05 AC 62 ms
63,872 KB
testcase_06 AC 68 ms
67,968 KB
testcase_07 AC 61 ms
65,152 KB
testcase_08 AC 45 ms
55,424 KB
testcase_09 AC 46 ms
55,552 KB
testcase_10 AC 47 ms
55,468 KB
testcase_11 AC 847 ms
137,472 KB
testcase_12 AC 814 ms
126,976 KB
testcase_13 AC 1,047 ms
145,456 KB
testcase_14 AC 525 ms
105,952 KB
testcase_15 AC 402 ms
99,200 KB
testcase_16 AC 1,087 ms
149,832 KB
testcase_17 AC 1,370 ms
164,824 KB
testcase_18 AC 1,343 ms
164,128 KB
testcase_19 AC 1,246 ms
159,580 KB
testcase_20 AC 673 ms
118,860 KB
testcase_21 AC 677 ms
120,824 KB
testcase_22 AC 349 ms
95,000 KB
testcase_23 AC 301 ms
91,156 KB
testcase_24 AC 636 ms
157,404 KB
testcase_25 AC 1,403 ms
169,488 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