結果

問題 No.763 Noelちゃんと木遊び
ユーザー yelyel
提出日時 2024-05-04 12:08:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 792 bytes
コンパイル時間 3,135 ms
コンパイル使用メモリ 252,124 KB
実行使用メモリ 29,924 KB
最終ジャッジ日時 2024-11-25 22:57:47
合計ジャッジ時間 6,460 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 94 ms
21,432 KB
testcase_03 AC 70 ms
20,540 KB
testcase_04 AC 50 ms
20,228 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 106 ms
21,928 KB
testcase_08 AC 67 ms
20,608 KB
testcase_09 AC 48 ms
20,172 KB
testcase_10 AC 30 ms
19,344 KB
testcase_11 WA -
testcase_12 AC 98 ms
21,588 KB
testcase_13 WA -
testcase_14 AC 91 ms
21,272 KB
testcase_15 AC 64 ms
20,532 KB
testcase_16 WA -
testcase_17 AC 64 ms
20,588 KB
testcase_18 AC 114 ms
21,940 KB
testcase_19 AC 102 ms
21,776 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
const int MAX = 1e9;
const int MIN = -1*1e9;
const ll MAXLL = 1e18;
const ll MINLL = -1*1e18;
vector<bool> F(200010);
vector<vector<int>> G(200010);
vector DP(200010,vector<int>(2));

void DFS(int n, int v)
{
    for(auto x : G[n])
    {
        if(F[x] || x == v) continue;
        DFS(x,n);
        DP[n][0] += max(DP[x][0],DP[x][1]+1);
        DP[n][1] += max(DP[x][0],DP[x][1]);
    }
    return;
}

int main()
{
    int N; cin >> N;
    for(int i = 0; i < N-1; i++)
    {
        int A,B; cin >> A >> B;
        G[A].push_back(B);
        G[B].push_back(A);
    }
    DFS(1,-1);
    cout << max(DP[1][0],DP[1][1])+1 << endl;
    return 0;
}
0