結果

問題 No.1488 Max Score of the Tree
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-23 22:14:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-04 08:11:52
合計ジャッジ時間 3,457 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
76,160 KB
testcase_01 AC 107 ms
76,032 KB
testcase_02 AC 112 ms
75,904 KB
testcase_03 AC 113 ms
76,288 KB
testcase_04 AC 115 ms
76,288 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 72 ms
75,776 KB
testcase_07 AC 86 ms
75,904 KB
testcase_08 AC 75 ms
75,648 KB
testcase_09 AC 73 ms
75,392 KB
testcase_10 AC 82 ms
76,288 KB
testcase_11 AC 106 ms
75,776 KB
testcase_12 AC 41 ms
59,008 KB
testcase_13 AC 62 ms
73,088 KB
testcase_14 AC 80 ms
75,776 KB
testcase_15 AC 73 ms
75,904 KB
testcase_16 AC 52 ms
64,000 KB
testcase_17 AC 65 ms
75,904 KB
testcase_18 AC 88 ms
75,776 KB
testcase_19 AC 72 ms
75,648 KB
testcase_20 AC 59 ms
71,296 KB
testcase_21 AC 54 ms
65,792 KB
testcase_22 AC 73 ms
75,648 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 41 ms
52,096 KB
testcase_26 AC 71 ms
76,160 KB
testcase_27 AC 53 ms
62,720 KB
testcase_28 AC 59 ms
67,328 KB
testcase_29 AC 62 ms
71,424 KB
testcase_30 AC 96 ms
76,160 KB
testcase_31 AC 114 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, K = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(N-1):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append((b, c))
    G[b].append((a, c))

q = [0]
par = [-1] * N
topo = []
while q:
    s = q.pop()
    topo.append(s)
    for t, d in G[s]:
        if t == par[s]:
            continue
        par[t] = s
        G[t].remove((s, d))
        q.append(t)

cnt = [0]*N
for s, g in enumerate(G):
    if not g:
        cnt[s] = 1

ans = 0
knapsack = []
for s in topo[::-1]:
    p = par[s]
    if p != -1:
        cnt[p] += cnt[s]
    for t, c in G[s]:
        ans += c * cnt[t]
        knapsack.append((c, c * cnt[t]))

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