結果

問題 No.1488 Max Score of the Tree
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-04 22:13:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,121 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-23 17:29:23
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
76,136 KB
testcase_01 AC 147 ms
76,672 KB
testcase_02 AC 145 ms
76,624 KB
testcase_03 AC 136 ms
76,160 KB
testcase_04 AC 144 ms
76,200 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 64 ms
75,984 KB
testcase_07 AC 95 ms
76,288 KB
testcase_08 AC 72 ms
76,104 KB
testcase_09 AC 84 ms
75,776 KB
testcase_10 AC 87 ms
76,476 KB
testcase_11 AC 142 ms
76,160 KB
testcase_12 AC 41 ms
59,264 KB
testcase_13 AC 73 ms
75,504 KB
testcase_14 AC 87 ms
76,032 KB
testcase_15 AC 72 ms
75,988 KB
testcase_16 AC 47 ms
66,560 KB
testcase_17 AC 64 ms
76,160 KB
testcase_18 AC 102 ms
76,288 KB
testcase_19 AC 75 ms
76,100 KB
testcase_20 AC 62 ms
75,864 KB
testcase_21 AC 48 ms
68,864 KB
testcase_22 AC 72 ms
75,888 KB
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 62 ms
76,416 KB
testcase_27 AC 49 ms
65,664 KB
testcase_28 AC 59 ms
75,776 KB
testcase_29 AC 64 ms
75,648 KB
testcase_30 AC 99 ms
76,160 KB
testcase_31 AC 139 ms
76,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, k = map(int, input().split())
g = [[] for i in range(n)]
toc = {}
edge = []
for i in range(n-1):
    a, b, c = map(int, input().split())
    a, b = a-1, b-1
    g[a].append(b)
    g[b].append(a)
    toc[(a, b)] = c
    toc[(b, a)] = c
    edge.append((a, b, c))

s = []
s.append(0)
parent = [-1]*n
order = []
while s:
    v = s.pop()
    order.append(v)
    for u in g[v]:
        if parent[v] != u:
            s.append(u)
            parent[u] = v
order.reverse()
leaf = [0]*n
for v in order:
    if len(g[v]) == 1:
        leaf[v] = 1
    p =  parent[v]
    if p != -1:
        leaf[p] += leaf[v]
dp1 = [0]*n
for v in order:
    p =  parent[v]
    if p != -1:
        dp1[p] += dp1[v]+toc[(p, v)]*leaf[v]
#print(dp1)
dp2 = [-1]*(k+1)
dp2[0] = 0
for a, b, c in edge:
    if parent[a] == b:
        v = a
    else:
        v = b
    for i in reversed(range(k+1)):
        if dp2[i] == -1:
            continue
        if i+c <= k:
            dp2[i+c] = max(dp2[i+c], dp2[i]+c*leaf[v])
#print(dp2)
ans = dp1[0]+max(dp2)
print(ans)
0