結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
18,816 KB
testcase_01 AC 15 ms
5,376 KB
testcase_02 AC 37 ms
8,192 KB
testcase_03 AC 23 ms
6,528 KB
testcase_04 AC 16 ms
5,632 KB
testcase_05 AC 22 ms
6,528 KB
testcase_06 AC 40 ms
9,216 KB
testcase_07 AC 41 ms
8,960 KB
testcase_08 AC 24 ms
6,656 KB
testcase_09 AC 15 ms
5,632 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 39 ms
9,216 KB
testcase_12 AC 36 ms
8,576 KB
testcase_13 AC 36 ms
8,576 KB
testcase_14 AC 33 ms
7,936 KB
testcase_15 AC 22 ms
6,528 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 22 ms
6,528 KB
testcase_18 AC 42 ms
9,088 KB
testcase_19 AC 40 ms
8,704 KB
testcase_20 AC 39 ms
8,576 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, {-1, -1});
    function<void(int,int)> dfs = [&](int v, int p){
        dp[v][0] = 0;
        dp[v][1] = 1;
        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