結果

問題 No.763 Noelちゃんと木遊び
ユーザー t98slidert98slider
提出日時 2022-12-24 01:19:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 1,368 ms
コンパイル使用メモリ 172,944 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-11-18 05:04:02
合計ジャッジ時間 2,694 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
18,816 KB
testcase_01 AC 12 ms
6,820 KB
testcase_02 AC 27 ms
8,192 KB
testcase_03 AC 24 ms
6,816 KB
testcase_04 AC 14 ms
6,820 KB
testcase_05 AC 18 ms
6,820 KB
testcase_06 AC 32 ms
9,088 KB
testcase_07 AC 31 ms
8,960 KB
testcase_08 AC 20 ms
6,816 KB
testcase_09 AC 13 ms
6,820 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 37 ms
9,216 KB
testcase_12 AC 29 ms
8,576 KB
testcase_13 AC 29 ms
8,576 KB
testcase_14 AC 28 ms
7,808 KB
testcase_15 AC 18 ms
6,820 KB
testcase_16 AC 4 ms
6,816 KB
testcase_17 AC 18 ms
6,820 KB
testcase_18 AC 32 ms
9,088 KB
testcase_19 AC 29 ms
8,704 KB
testcase_20 AC 30 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, u, v;
    cin >> n;
    vector<vector<int>> g(n);
    for(int i = 1; i < n; i++){
        cin >> u >> v;
        u--, v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    vector<array<int,2>> dp(n, {0, 1});
    function<void(int,int)> dfs = [&](int v, int p){
        for(auto &&u:g[v]){
            if(u == p)continue;
            dfs(u, v);
            dp[v][0] += max(dp[u][0], dp[u][1]);
            dp[v][1] += dp[u][0];
        }
    };
    dfs(0, -1);
    cout << max(dp[0][0], dp[0][1]) << '\n';
}
0