結果

問題 No.763 Noelちゃんと木遊び
ユーザー NacoNaco
提出日時 2019-10-11 00:36:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 168,468 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-11-22 05:59:59
合計ジャッジ時間 3,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
17,664 KB
testcase_01 AC 29 ms
7,168 KB
testcase_02 AC 69 ms
8,960 KB
testcase_03 AC 45 ms
7,808 KB
testcase_04 AC 33 ms
7,296 KB
testcase_05 AC 43 ms
7,936 KB
testcase_06 AC 84 ms
9,600 KB
testcase_07 AC 83 ms
9,472 KB
testcase_08 AC 47 ms
8,064 KB
testcase_09 AC 31 ms
7,296 KB
testcase_10 AC 14 ms
6,400 KB
testcase_11 AC 84 ms
9,728 KB
testcase_12 AC 74 ms
9,216 KB
testcase_13 AC 72 ms
9,216 KB
testcase_14 AC 66 ms
8,832 KB
testcase_15 AC 45 ms
7,936 KB
testcase_16 AC 10 ms
6,144 KB
testcase_17 AC 45 ms
7,936 KB
testcase_18 AC 85 ms
9,600 KB
testcase_19 AC 75 ms
9,216 KB
testcase_20 AC 76 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<int> g[100100];

int dp[100100][2];

void dfs(int u,int pa=-1){
    dp[u][1]=0;
    dp[u][0]=1;
    for(auto v:g[u]){
        if(v==pa) continue;
        dfs(v,u);
        dp[u][1]+=max(dp[v][1],dp[v][0]);
        dp[u][0]+=max(dp[v][0]-1,dp[v][1]);
    }
}

int main(){
    int N; cin >> N;
    for(int i=0;i<N-1;i++){
        int u,v; cin >> u >> v; u--; v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    dfs(0);
    cout << max(dp[0][1],dp[0][0]) << endl;

}
0