結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
17,408 KB
testcase_01 AC 26 ms
7,168 KB
testcase_02 AC 61 ms
8,960 KB
testcase_03 AC 42 ms
8,004 KB
testcase_04 AC 30 ms
7,424 KB
testcase_05 AC 41 ms
7,936 KB
testcase_06 AC 74 ms
9,600 KB
testcase_07 AC 73 ms
9,472 KB
testcase_08 AC 43 ms
8,064 KB
testcase_09 AC 29 ms
7,168 KB
testcase_10 AC 13 ms
6,528 KB
testcase_11 AC 75 ms
9,672 KB
testcase_12 AC 70 ms
9,216 KB
testcase_13 AC 66 ms
9,216 KB
testcase_14 AC 60 ms
8,832 KB
testcase_15 AC 43 ms
7,936 KB
testcase_16 AC 9 ms
6,144 KB
testcase_17 AC 43 ms
7,936 KB
testcase_18 AC 73 ms
9,664 KB
testcase_19 AC 69 ms
9,216 KB
testcase_20 AC 69 ms
9,344 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