結果

問題 No.1488 Max Score of the Tree
ユーザー tabae326tabae326
提出日時 2021-04-23 22:11:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,704 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 216,492 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-07-04 08:10:06
合計ジャッジ時間 4,659 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
86,656 KB
testcase_01 AC 84 ms
83,584 KB
testcase_02 AC 90 ms
87,424 KB
testcase_03 AC 93 ms
90,240 KB
testcase_04 AC 91 ms
90,368 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 26 ms
28,416 KB
testcase_07 AC 52 ms
55,040 KB
testcase_08 AC 39 ms
41,728 KB
testcase_09 AC 27 ms
28,032 KB
testcase_10 AC 56 ms
57,344 KB
testcase_11 AC 90 ms
90,368 KB
testcase_12 AC 4 ms
6,144 KB
testcase_13 AC 14 ms
15,872 KB
testcase_14 AC 47 ms
47,232 KB
testcase_15 AC 30 ms
31,872 KB
testcase_16 AC 8 ms
11,008 KB
testcase_17 AC 19 ms
22,784 KB
testcase_18 AC 60 ms
62,080 KB
testcase_19 AC 37 ms
38,784 KB
testcase_20 AC 15 ms
17,408 KB
testcase_21 AC 10 ms
14,336 KB
testcase_22 AC 26 ms
29,568 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 25 ms
28,800 KB
testcase_27 AC 4 ms
6,528 KB
testcase_28 AC 10 ms
13,184 KB
testcase_29 AC 13 ms
16,896 KB
testcase_30 AC 72 ms
74,624 KB
testcase_31 AC 89 ms
90,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++)

using pl = pair<ll,ll>;
using tl = tuple<ll,ll,ll>;

void chmax(ll &a, ll b) {
    a = max(a, b);
}

void solve() {
    ll n, k;
    cin >> n >> k;
    vector<vector<tl>> G(n);
    vector<ll> weight(n-1);
    rep(i, 0, n-1) {
        ll u, v, w;
        cin >> u >> v >> w;
        u--; v--;
        G[u].push_back({v, w, i});
        G[v].push_back({u, w, i});
        weight[i] = w;
    }
    vector<ll> cnt(n-1, 0), sub(n, 0);
    auto dfs1 = [&](auto dfs1, ll cur, ll par) -> ll {
        ll res = 0;
        bool leaf = true;
        for(auto [to, cost, id] : G[cur]) {
            if(to == par) continue;
            leaf = false;
            res += dfs1(dfs1, to, cur);
            cnt[id] += sub[to];
        }
        if(leaf) res = 1;
        sub[cur] = res;
        return res;
    };
    dfs1(dfs1, 0, -1);
    vector<ll> depth(n, 0);
    ll sum = 0;
    auto dfs2 = [&](auto dfs2, ll cur, ll par) -> void {
        bool leaf = true;
        for(auto [to, cost, id] : G[cur]) {
            if(to == par) continue;
            leaf = false;
            depth[to] = depth[cur] + cost;
            dfs2(dfs2, to, cur);
        }
        if(leaf) sum += depth[cur];
    };
    dfs2(dfs2, 0, -1);
    vector dp(n+10, vector<ll>(k+100, 0));
    rep(i, 0, n-1) {
        rep(j, 0, k+1) chmax(dp[i+1][j], dp[i][j]);
        rep(j, 0, k) if(j+weight[i] <= k) chmax(dp[i+1][j+weight[i]], dp[i][j]+cnt[i]*weight[i]);
    }
    ll ans = 0;
    rep(i, 0, k+1) chmax(ans, dp[n-1][i]);
    cout << sum+ans << endl;
}

int main() {
    solve();
    return 0;
}
0