結果

問題 No.763 Noelちゃんと木遊び
ユーザー face4face4
提出日時 2018-12-13 13:33:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 72,784 KB
実行使用メモリ 17,764 KB
最終ジャッジ日時 2024-09-25 04:25:58
合計ジャッジ時間 2,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
17,764 KB
testcase_01 AC 28 ms
7,460 KB
testcase_02 AC 68 ms
8,960 KB
testcase_03 AC 48 ms
8,064 KB
testcase_04 AC 32 ms
7,480 KB
testcase_05 AC 45 ms
8,064 KB
testcase_06 AC 85 ms
9,736 KB
testcase_07 AC 81 ms
9,600 KB
testcase_08 AC 48 ms
8,220 KB
testcase_09 AC 32 ms
7,404 KB
testcase_10 AC 14 ms
6,940 KB
testcase_11 AC 88 ms
9,836 KB
testcase_12 AC 75 ms
9,468 KB
testcase_13 AC 71 ms
9,368 KB
testcase_14 AC 61 ms
8,960 KB
testcase_15 AC 44 ms
8,040 KB
testcase_16 AC 10 ms
6,988 KB
testcase_17 AC 44 ms
8,244 KB
testcase_18 AC 83 ms
9,832 KB
testcase_19 AC 74 ms
9,472 KB
testcase_20 AC 76 ms
9,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cstring>
#include<stack>
using namespace std;

int dp[100000][2] = {};
bool memo[100000][2] = {};
vector<int> path[100000];

int dfs(int cur, int par, int flag){
    if(memo[cur][flag]) return dp[cur][flag];

    memo[cur][flag] = true;

    int ret = flag;

    if(flag){
        for(int next : path[cur]){
            if(next == par) continue;
            ret += dfs(next, cur, 0);
        }
    }else{
        for(int next : path[cur]){
            if(next == par)  continue;
            ret += max(dfs(next, cur, 0), dfs(next, cur, 1));
        }
    }

    dp[cur][flag] = ret;

    return ret;
}

int main(){
    int n;
    cin >> n;

    int u, v;
    for(int i = 0; i < n-1; i++){
        cin >> u >> v;
        u--, v--;
        path[u].push_back(v);
        path[v].push_back(u);
    }

    cout << max(dfs(0, -1, 0) , dfs(0, -1, 1)) << endl;

    return 0;
}
0