結果

問題 No.807 umg tours
ユーザー silversmithsilversmith
提出日時 2019-04-07 13:22:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 169,276 KB
最終ジャッジ日時 2024-06-27 00:14:24
合計ジャッジ時間 16,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
63,744 KB
testcase_01 AC 72 ms
67,968 KB
testcase_02 AC 66 ms
66,816 KB
testcase_03 AC 66 ms
66,176 KB
testcase_04 AC 59 ms
62,976 KB
testcase_05 AC 60 ms
64,128 KB
testcase_06 AC 68 ms
68,352 KB
testcase_07 AC 63 ms
65,024 KB
testcase_08 AC 49 ms
55,552 KB
testcase_09 AC 49 ms
55,424 KB
testcase_10 AC 49 ms
55,424 KB
testcase_11 AC 787 ms
137,856 KB
testcase_12 AC 782 ms
126,976 KB
testcase_13 AC 1,075 ms
145,828 KB
testcase_14 AC 522 ms
105,728 KB
testcase_15 AC 411 ms
99,200 KB
testcase_16 AC 1,123 ms
150,792 KB
testcase_17 AC 1,372 ms
165,080 KB
testcase_18 AC 1,467 ms
163,580 KB
testcase_19 AC 1,394 ms
159,872 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 624 ms
157,660 KB
testcase_25 AC 1,355 ms
169,276 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 + 1] * (2*N)
    d[0] = 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