結果

問題 No.1488 Max Score of the Tree
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-04-23 22:40:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 1,118 bytes
コンパイル時間 1,733 ms
コンパイル使用メモリ 181,156 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-07-04 08:25:23
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
78,848 KB
testcase_01 AC 73 ms
75,776 KB
testcase_02 AC 78 ms
79,616 KB
testcase_03 AC 78 ms
82,432 KB
testcase_04 AC 78 ms
82,432 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 21 ms
22,912 KB
testcase_07 AC 45 ms
48,640 KB
testcase_08 AC 31 ms
34,816 KB
testcase_09 AC 24 ms
25,600 KB
testcase_10 AC 47 ms
50,048 KB
testcase_11 AC 78 ms
82,432 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 13 ms
14,592 KB
testcase_14 AC 38 ms
41,216 KB
testcase_15 AC 25 ms
26,752 KB
testcase_16 AC 6 ms
7,680 KB
testcase_17 AC 15 ms
17,920 KB
testcase_18 AC 52 ms
56,064 KB
testcase_19 AC 30 ms
32,512 KB
testcase_20 AC 13 ms
14,976 KB
testcase_21 AC 8 ms
9,344 KB
testcase_22 AC 24 ms
26,112 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 19 ms
21,248 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 10 ms
11,776 KB
testcase_29 AC 13 ms
14,592 KB
testcase_30 AC 63 ms
66,688 KB
testcase_31 AC 77 ms
82,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int dfs(int, int)':
main.cpp:16:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   16 |     for(auto [u,c,idx] : g[v]) {
      |              ^

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.04.23 22:40:53
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

vector<vector<array<int,3>>> g;
vector<array<ll,2>> edge;
ll ans;
int dfs(int v,int p = -1) {
    int sum = 0;
    for(auto [u,c,idx] : g[v]) {
        if (u == p) continue;
        int d = dfs(u,v);
        sum += d;
        edge[idx][1] = c*d;
        ans += c*d;
    }
    if (sum == 0) sum++;
    
    return sum;
}
int main() {
    int n,k;cin >> n >> k;
    g.resize(n);
    edge.resize(n-1);
    for (int i = 0; i < n-1; i++) {
        int a,b,c;cin >> a >> b >> c;
        a--;b--;
        g[a].push_back({b,c,i});
        g[b].push_back({a,c,i});
        edge[i][0] = c;
        edge[i][1] = 0;
    }
    dfs(0);
    vector<vector<ll>> dp(n,vector<ll>(k+1));
    for (int i = 0; i < n-1; i++) {
        for (int j = 0; j <= k; j++) {
            dp[i+1][j] = dp[i][j];
            if (edge[i][0] <= j) dp[i+1][j] = max(dp[i+1][j],dp[i][j-edge[i][0]]+edge[i][1]);
        }
    }
    
    
    
    
    cout << ans + dp[n-1][k] << endl;
    return 0;
}
0