結果

問題 No.807 umg tours
ユーザー kohei2019kohei2019
提出日時 2022-04-14 01:00:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 984 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 86,948 KB
実行使用メモリ 139,052 KB
最終ジャッジ日時 2023-08-25 17:30:57
合計ジャッジ時間 27,199 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
80,516 KB
testcase_01 AC 101 ms
76,500 KB
testcase_02 AC 105 ms
76,516 KB
testcase_03 AC 97 ms
76,300 KB
testcase_04 AC 89 ms
76,088 KB
testcase_05 AC 91 ms
76,148 KB
testcase_06 AC 99 ms
76,312 KB
testcase_07 AC 97 ms
76,360 KB
testcase_08 AC 75 ms
71,404 KB
testcase_09 AC 77 ms
71,232 KB
testcase_10 AC 78 ms
71,268 KB
testcase_11 AC 1,332 ms
111,768 KB
testcase_12 AC 1,485 ms
114,364 KB
testcase_13 AC 1,845 ms
124,380 KB
testcase_14 AC 903 ms
98,752 KB
testcase_15 AC 654 ms
93,156 KB
testcase_16 AC 1,705 ms
124,284 KB
testcase_17 AC 2,579 ms
139,052 KB
testcase_18 AC 2,441 ms
138,488 KB
testcase_19 AC 2,160 ms
134,516 KB
testcase_20 AC 1,008 ms
111,696 KB
testcase_21 AC 1,064 ms
115,148 KB
testcase_22 AC 499 ms
91,648 KB
testcase_23 AC 449 ms
89,772 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
used = [False]*(N)
while h:
    c,n,f = heapq.heappop(h)
    if used[n]:
        continue
    if f == 0:
        used[n] = True
    for nex,cos in lsg[n]:
        if used[nex]:
            continue
        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