結果

問題 No.1488 Max Score of the Tree
ユーザー MZKiMZKi
提出日時 2021-04-05 00:49:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 1,245 ms
コンパイル使用メモリ 173,260 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-06-09 08:25:20
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
78,720 KB
testcase_01 AC 65 ms
75,776 KB
testcase_02 AC 71 ms
79,616 KB
testcase_03 AC 71 ms
82,304 KB
testcase_04 AC 74 ms
82,432 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 19 ms
22,912 KB
testcase_07 AC 41 ms
48,512 KB
testcase_08 AC 28 ms
34,688 KB
testcase_09 AC 20 ms
25,600 KB
testcase_10 AC 43 ms
49,792 KB
testcase_11 AC 70 ms
82,304 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 12 ms
14,592 KB
testcase_14 AC 34 ms
41,088 KB
testcase_15 AC 20 ms
26,624 KB
testcase_16 AC 4 ms
7,680 KB
testcase_17 AC 12 ms
17,664 KB
testcase_18 AC 45 ms
56,064 KB
testcase_19 AC 25 ms
32,384 KB
testcase_20 AC 10 ms
14,976 KB
testcase_21 AC 5 ms
9,088 KB
testcase_22 AC 19 ms
25,984 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 17 ms
21,248 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 8 ms
11,520 KB
testcase_29 AC 10 ms
14,464 KB
testcase_30 AC 56 ms
66,560 KB
testcase_31 AC 71 ms
82,432 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;
    vector<vector<edge>> G(n);
    rep(i, n-1){
        ll a, b, c;
        cin >> a >> b >> c;
        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