結果

問題 No.807 umg tours
ユーザー kohei2019kohei2019
提出日時 2022-04-14 01:19:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,658 ms / 4,000 ms
コード長 723 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 167,712 KB
最終ジャッジ日時 2024-12-24 03:21:38
合計ジャッジ時間 18,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
62,976 KB
testcase_01 AC 64 ms
65,060 KB
testcase_02 AC 68 ms
67,960 KB
testcase_03 AC 64 ms
66,416 KB
testcase_04 AC 60 ms
64,728 KB
testcase_05 AC 58 ms
63,420 KB
testcase_06 AC 67 ms
67,616 KB
testcase_07 AC 64 ms
66,648 KB
testcase_08 AC 43 ms
53,292 KB
testcase_09 AC 45 ms
53,524 KB
testcase_10 AC 45 ms
54,500 KB
testcase_11 AC 1,004 ms
138,168 KB
testcase_12 AC 970 ms
126,344 KB
testcase_13 AC 1,300 ms
145,884 KB
testcase_14 AC 635 ms
107,420 KB
testcase_15 AC 481 ms
99,216 KB
testcase_16 AC 1,287 ms
148,924 KB
testcase_17 AC 1,583 ms
162,936 KB
testcase_18 AC 1,620 ms
164,484 KB
testcase_19 AC 1,545 ms
160,512 KB
testcase_20 AC 846 ms
123,940 KB
testcase_21 AC 878 ms
128,604 KB
testcase_22 AC 394 ms
97,748 KB
testcase_23 AC 393 ms
93,816 KB
testcase_24 AC 715 ms
153,340 KB
testcase_25 AC 1,658 ms
167,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M = map(int,input().split())
lsg = [[] for i in range(2*N)]
for i in range(M):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    lsg[a].append((b,c))
    lsg[b].append((a,c))
    lsg[a].append((b+N,0))
    lsg[b].append((a+N,0))
    lsg[a+N].append((b+N,c))
    lsg[b+N].append((a+N,c))

h = [(0,0)]
INF = float('INF')
cost = [INF]*(2*N)
cost[0] = 0
cost[N] = 0
used = [False]*(2*N)
while h:
    c,n = heapq.heappop(h)
    if used[n]:
        continue
    used[n] = True
    for nex,cos in lsg[n]:
        if used[nex]:
            continue
        if cost[nex] > c + cos:
            cost[nex] = c + cos
            heapq.heappush(h, (c+cos,nex))
for i in range(N):
    print(cost[i]+cost[i+N])
0