結果

問題 No.1488 Max Score of the Tree
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-19 14:42:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 1,082 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 215,628 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-06-27 03:03:24
合計ジャッジ時間 4,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
78,848 KB
testcase_01 AC 70 ms
75,776 KB
testcase_02 AC 74 ms
79,616 KB
testcase_03 AC 76 ms
82,432 KB
testcase_04 AC 76 ms
82,432 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 21 ms
22,784 KB
testcase_07 AC 44 ms
48,640 KB
testcase_08 AC 31 ms
34,816 KB
testcase_09 AC 24 ms
25,472 KB
testcase_10 AC 44 ms
49,920 KB
testcase_11 AC 74 ms
82,304 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 12 ms
14,592 KB
testcase_14 AC 37 ms
41,088 KB
testcase_15 AC 24 ms
26,752 KB
testcase_16 AC 6 ms
7,808 KB
testcase_17 AC 15 ms
17,920 KB
testcase_18 AC 50 ms
56,064 KB
testcase_19 AC 28 ms
32,512 KB
testcase_20 AC 13 ms
14,976 KB
testcase_21 AC 7 ms
9,216 KB
testcase_22 AC 24 ms
26,112 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 18 ms
21,248 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 9 ms
11,648 KB
testcase_29 AC 12 ms
14,464 KB
testcase_30 AC 58 ms
66,688 KB
testcase_31 AC 72 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

ll N, K;
vector<vector<pair<ll, ll>>> E;
vector<ll> subtree;
vector<vector<ll>> dp;
vector<pair<ll, ll>> D;

ll subtree_size(ll from, ll p){
    ll cnt = 0;
    for (auto [to, C] : E[from]){
        if (to == p) continue;
        cnt += subtree_size(to, from);
        D.push_back({C, C*subtree[to]});
    }

    if (cnt == 0) cnt = 1;

    return subtree[from] = cnt;
}

int main(){

    ll A, B, C, x, y, ans=0;
    cin >> N >> K;
    
    E.resize(N);
    subtree.resize(N);
    
    for (int i=0; i < N-1; i++){
        cin >> A >> B >> C;
        A--; B--;
        E[A].push_back({B, C});
        E[B].push_back({A, C});
    }

    subtree_size(0, -1); 

    vector<vector<ll>> dp(N, vector<ll>(K+1));
    
    for (int i=1; i<=N-1; i++){
        tie(x, y) = D[i-1];
        ans += y;
        for (int j=0; j<=K; j++){
            if (j-x>=0) dp[i][j] = max(dp[i][j], dp[i-1][j-x]+y);
            dp[i][j] = max(dp[i][j], dp[i-1][j]);
        }
    }

    cout << ans + dp[N-1][K] << endl;

    return 0;
}
0