結果

問題 No.807 umg tours
ユーザー KentarokumuraKentarokumura
提出日時 2019-03-22 23:29:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,160 ms / 4,000 ms
コード長 682 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 164,820 KB
最終ジャッジ日時 2024-11-23 19:09:50
合計ジャッジ時間 13,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,928 KB
testcase_01 AC 49 ms
61,312 KB
testcase_02 AC 50 ms
63,232 KB
testcase_03 AC 53 ms
61,952 KB
testcase_04 AC 47 ms
61,056 KB
testcase_05 AC 51 ms
60,672 KB
testcase_06 AC 50 ms
63,232 KB
testcase_07 AC 47 ms
61,788 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 39 ms
52,864 KB
testcase_10 AC 39 ms
52,992 KB
testcase_11 AC 668 ms
136,320 KB
testcase_12 AC 675 ms
123,488 KB
testcase_13 AC 876 ms
141,776 KB
testcase_14 AC 464 ms
104,936 KB
testcase_15 AC 355 ms
98,772 KB
testcase_16 AC 929 ms
146,816 KB
testcase_17 AC 1,160 ms
159,788 KB
testcase_18 AC 1,133 ms
159,752 KB
testcase_19 AC 1,085 ms
156,428 KB
testcase_20 AC 567 ms
118,504 KB
testcase_21 AC 590 ms
120,420 KB
testcase_22 AC 291 ms
95,056 KB
testcase_23 AC 254 ms
90,792 KB
testcase_24 AC 548 ms
150,528 KB
testcase_25 AC 1,142 ms
164,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
import sys
input = sys.stdin.readline
N,M=map(int,input().split())
table=[[] for i in range(2*N)]
for i in range(M):
    a,b,c=map(int,input().split())
    a,b=a-1,b-1
    table[a].append((b,c))
    table[b].append((a,c))
    table[a].append((N+b,0))
    table[b].append((N+a,0))
    table[N+a].append((N+b,c))
    table[N+b].append((N+a,c))
H=[]
cost=[10**16]*(2*N)
cost[0]=0
H.append((0,0))
while H:
    cos,pt=heappop(H)
    if cost[pt]<cos:
        continue
    for y,c in table[pt]:
        if cost[y]>cost[pt]+c:
            cost[y]=cost[pt]+c
            heappush(H,(cost[y],y))
print(0)
for i in range(1,N):
    print(cost[i]+cost[N+i])


0