結果

問題 No.1488 Max Score of the Tree
ユーザー MZKiMZKi
提出日時 2021-04-05 01:54:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,796 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 171,124 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-06-09 08:38:33
合計ジャッジ時間 3,410 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
78,848 KB
testcase_01 AC 65 ms
75,648 KB
testcase_02 AC 67 ms
79,488 KB
testcase_03 AC 71 ms
82,304 KB
testcase_04 AC 73 ms
82,304 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 19 ms
22,784 KB
testcase_07 AC 43 ms
48,512 KB
testcase_08 AC 29 ms
34,688 KB
testcase_09 AC 22 ms
25,472 KB
testcase_10 AC 44 ms
49,792 KB
testcase_11 AC 74 ms
82,304 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 12 ms
14,464 KB
testcase_14 AC 36 ms
40,960 KB
testcase_15 AC 22 ms
26,624 KB
testcase_16 AC 6 ms
7,680 KB
testcase_17 AC 14 ms
17,792 KB
testcase_18 AC 49 ms
55,936 KB
testcase_19 AC 28 ms
32,384 KB
testcase_20 AC 13 ms
14,848 KB
testcase_21 AC 7 ms
9,216 KB
testcase_22 AC 23 ms
25,984 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 17 ms
21,120 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 10 ms
11,520 KB
testcase_29 AC 12 ms
14,336 KB
testcase_30 AC 60 ms
66,688 KB
testcase_31 AC 73 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
template<class T> inline bool chmin(T&a, T b){if(a > b){a = b; return true;}else{return false;}}
template<class T> inline bool chmax(T&a, T b){if(a < b){a = b; return true;}else{return false;}}
#define ll long long
#define double long double
#define rep(i,n) for(int i=0;i<(n);i++)
#define REP(i,n) for(int i=1;i<=(n);i++)
#define mod (ll)(1e9+7)
#define inf (ll)(3e18+7)
#define eps (double)(1e-9)
#define pi (double) acos(-1)
#define P pair<int,int>
#define PiP pair<int,pair<int,int>>
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
using namespace std;

struct edge{
    ll to, cost;
};

vector<int> cnt(110);
vector<P> vec;

void dfs(const vector<vector<edge>> &G, int v, int p){
    int ans = 0;
    for(auto nv : G[v]){
        if(nv.to == p)continue;
        dfs(G, nv.to, v);
        ans += cnt[nv.to];
        vec.push_back({nv.cost * cnt[nv.to], nv.cost});
    }
    cnt[v] = ans;
    if(ans == 0)cnt[v]++;
}

int main() {
    int n, k;
    cin >> n >> k;
    assert(n >= 2);
    assert(n <= 100);
    assert(k >= 1);
    assert(k <= 100000);
    vector<vector<edge>> G(n);
    rep(i, n-1){
        ll a, b, c;
        cin >> a >> b >> c;
        assert(a >= 1);
        assert(a <= n);
        assert(b >= 1);
        assert(b <= n);
        assert(c >= 1);
        assert(c <= k);
        a--; b--;
        G[a].push_back({b, c});
        G[b].push_back({a, c});
    }
    dfs(G, 0, -1);
    vector<vector<ll>> dp(n, vector<ll>(k+1, 0));
    ll ans = 0;
    rep(i, n-1){
        ans += vec[i].first;
        rep(j, k+1){
            dp[i+1][j] = dp[i][j];
            if(j-vec[i].second >= 0){
                chmax(dp[i+1][j], dp[i][j-vec[i].second] + vec[i].first);
            }
        }
    }
    cout << ans + dp[n-1][k] << endl;
}
0