結果

問題 No.1488 Max Score of the Tree
ユーザー convexineqconvexineq
提出日時 2021-04-23 21:46:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 63,660 KB
最終ジャッジ日時 2024-07-04 07:52:01
合計ジャッジ時間 3,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
61,952 KB
testcase_01 AC 82 ms
62,080 KB
testcase_02 AC 75 ms
62,592 KB
testcase_03 AC 88 ms
62,080 KB
testcase_04 AC 90 ms
61,952 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 60 ms
62,080 KB
testcase_07 AC 71 ms
63,104 KB
testcase_08 AC 55 ms
61,440 KB
testcase_09 AC 58 ms
61,952 KB
testcase_10 AC 67 ms
62,720 KB
testcase_11 AC 92 ms
63,660 KB
testcase_12 AC 42 ms
58,624 KB
testcase_13 AC 54 ms
61,824 KB
testcase_14 AC 65 ms
61,568 KB
testcase_15 AC 59 ms
61,056 KB
testcase_16 AC 47 ms
60,928 KB
testcase_17 AC 53 ms
61,184 KB
testcase_18 AC 73 ms
61,568 KB
testcase_19 AC 61 ms
61,312 KB
testcase_20 AC 53 ms
60,544 KB
testcase_21 AC 49 ms
60,544 KB
testcase_22 AC 58 ms
61,440 KB
testcase_23 AC 37 ms
52,096 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 38 ms
52,864 KB
testcase_26 AC 54 ms
61,696 KB
testcase_27 AC 48 ms
61,120 KB
testcase_28 AC 49 ms
61,440 KB
testcase_29 AC 53 ms
61,568 KB
testcase_30 AC 80 ms
61,952 KB
testcase_31 AC 96 ms
62,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,K = map(int,input().split())
g = [[] for _ in range(n)]
for _ in range(n-1):
    a,b,c = map(int,input().split())
    g[a-1].append((b-1,c))
    g[b-1].append((a-1,c))
ans = 0

order = []
wt = [0]*n
st = [0]
parent = [-1]*n
while st:
    v = st.pop()
    order.append(v)
    for c,d in g[v]:
        if c != parent[v]:
            st.append(c)
            parent[c] = v
            wt[c] = d

res = []
size = [0]*n
for v in order[1:][::-1]:
    if len(g[v])==1: size[v] = 1
    ans += size[v]*wt[v]
    res.append((size[v],wt[v]))
    size[parent[v]] += size[v]

dp = [0]*(K+1)
for v,w in res:
    for i in range(w,K+1)[::-1]:
        dp[i] = max(dp[i], dp[i-w] + v*w)
print(ans+max(dp))
0