結果

問題 No.763 Noelちゃんと木遊び
ユーザー polyomino_24polyomino_24
提出日時 2018-12-12 00:40:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 103,596 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-09-24 17:37:32
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
17,920 KB
testcase_01 AC 28 ms
7,544 KB
testcase_02 AC 62 ms
9,672 KB
testcase_03 AC 40 ms
8,384 KB
testcase_04 AC 30 ms
7,872 KB
testcase_05 AC 43 ms
8,320 KB
testcase_06 AC 76 ms
10,072 KB
testcase_07 AC 74 ms
9,856 KB
testcase_08 AC 44 ms
8,776 KB
testcase_09 AC 30 ms
7,780 KB
testcase_10 AC 13 ms
6,940 KB
testcase_11 AC 77 ms
10,184 KB
testcase_12 AC 67 ms
9,544 KB
testcase_13 AC 68 ms
9,600 KB
testcase_14 AC 59 ms
9,664 KB
testcase_15 AC 41 ms
8,284 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 42 ms
8,324 KB
testcase_18 AC 73 ms
9,976 KB
testcase_19 AC 68 ms
9,928 KB
testcase_20 AC 73 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstring>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <tuple>
#include <unordered_map>
#include <vector>
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define show(x) cout << #x << " = " << (x) << endl;
using namespace std;
using ll = long long;
using pii = pair<int,int>;
vector<int>g[123456];
int dp[123456][2];
void dfs(int cur,int par){
    dp[cur][0] = 1;
    for(int x:g[cur]){
        if(x!=par){
            dfs(x,cur);
            dp[cur][0] += max(dp[x][0]-1,dp[x][1]);
            dp[cur][1] += max(dp[x][0],dp[x][1]);
        }
    }
}
int main(){
    int n;
    cin >> n;
    rep(i,n-1){
        int a,b;
        cin >> a>> b;
        a--,b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    dfs(0,-1);
    cout << max(dp[0][0], dp[0][1]) << endl;
}
0