結果

問題 No.807 umg tours
ユーザー kohei2019kohei2019
提出日時 2022-04-14 00:54:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 850 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 140,000 KB
最終ジャッジ日時 2024-06-06 11:39:10
合計ジャッジ時間 21,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
73,744 KB
testcase_01 AC 55 ms
67,900 KB
testcase_02 AC 59 ms
67,584 KB
testcase_03 AC 59 ms
65,844 KB
testcase_04 AC 50 ms
64,512 KB
testcase_05 AC 47 ms
62,976 KB
testcase_06 AC 54 ms
65,536 KB
testcase_07 AC 50 ms
64,256 KB
testcase_08 AC 35 ms
52,992 KB
testcase_09 AC 35 ms
53,120 KB
testcase_10 AC 35 ms
53,504 KB
testcase_11 AC 881 ms
109,816 KB
testcase_12 AC 1,002 ms
109,868 KB
testcase_13 AC 1,274 ms
120,348 KB
testcase_14 AC 641 ms
97,692 KB
testcase_15 AC 431 ms
90,772 KB
testcase_16 AC 1,170 ms
120,872 KB
testcase_17 AC 1,776 ms
134,112 KB
testcase_18 AC 1,760 ms
132,140 KB
testcase_19 AC 1,837 ms
128,384 KB
testcase_20 AC 776 ms
109,376 KB
testcase_21 AC 802 ms
112,660 KB
testcase_22 AC 393 ms
90,440 KB
testcase_23 AC 357 ms
88,404 KB
testcase_24 TLE -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M = map(int,input().split())
lsg = [[] for i in range(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))

h = [(0,0,0)]
INF = float('INF')
cost0 = [INF]*(N)
cost1 = [INF]*(N)
cost0[0] = 0
cost1[0] = 0
while h:
    c,n,f = heapq.heappop(h)
    for nex,cos in lsg[n]:
        if f == 0: # 使える
            if cost0[nex] > c + cos: # 使わない
                cost0[nex] = c + cos
                heapq.heappush(h, (c+cos,nex,0))
            if cost1[nex] > c: # 使う
                cost1[nex] = c
                heapq.heappush(h, (c,nex,1))
        if f == 1: # 使えない
            if cost1[nex] > c+ cos:
                cost1[nex] = c+ cos
                heapq.heappush(h, (c+ cos,nex,1))
for i in range(N):
    print(cost0[i]+cost1[i])
0