結果

問題 No.763 Noelちゃんと木遊び
ユーザー nyyanyya
提出日時 2022-09-08 03:06:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 177,180 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-05-02 23:25:20
合計ジャッジ時間 5,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
18,048 KB
testcase_01 AC 32 ms
5,632 KB
testcase_02 AC 84 ms
8,704 KB
testcase_03 AC 57 ms
7,040 KB
testcase_04 AC 37 ms
5,888 KB
testcase_05 AC 51 ms
6,912 KB
testcase_06 AC 101 ms
9,856 KB
testcase_07 AC 98 ms
9,728 KB
testcase_08 AC 54 ms
7,168 KB
testcase_09 AC 36 ms
5,888 KB
testcase_10 AC 14 ms
5,376 KB
testcase_11 AC 109 ms
10,112 KB
testcase_12 AC 93 ms
9,344 KB
testcase_13 AC 92 ms
9,344 KB
testcase_14 AC 81 ms
8,576 KB
testcase_15 AC 52 ms
6,912 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 51 ms
7,040 KB
testcase_18 AC 105 ms
9,984 KB
testcase_19 AC 94 ms
9,344 KB
testcase_20 AC 94 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
using Graph = vector<vector<int>>;

vector<bool> seen;
vector<int> dp_del;
vector<int> dp_rem;

void dfs(const Graph &G, int v) {
    seen[v] = true;

    for (auto next_v : G[v]) { 
        if (seen[next_v]) continue;
        dfs(G, next_v);
        dp_del[v] += max(dp_rem[next_v],dp_del[next_v]);
        dp_rem[v] += dp_del[next_v];
    }
}

int main(){

    int n;
    cin >> n;

    Graph g(n);
    vector<int> u(n-1),v(n-1);
    
    rep(i,n-1) {
        cin >> u[i] >> v[i];
        u[i]--,v[i]--;
        g[u[i]].push_back(v[i]);
        g[v[i]].push_back(u[i]);
    }
    seen.assign(n,false);
    dp_del.assign(n,0);
    dp_rem.assign(n,1);

    dfs(g,0);
    cout << max(dp_del[0],dp_rem[0]) << endl;
    return 0;
}
0