結果

問題 No.763 Noelちゃんと木遊び
ユーザー yelyel
提出日時 2024-05-04 12:53:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 3,440 ms
コンパイル使用メモリ 251,744 KB
実行使用メモリ 29,904 KB
最終ジャッジ日時 2024-05-04 12:53:49
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
29,904 KB
testcase_01 AC 47 ms
20,048 KB
testcase_02 AC 91 ms
21,484 KB
testcase_03 AC 69 ms
20,608 KB
testcase_04 AC 54 ms
20,224 KB
testcase_05 AC 65 ms
20,608 KB
testcase_06 AC 114 ms
21,984 KB
testcase_07 AC 109 ms
21,760 KB
testcase_08 AC 68 ms
20,608 KB
testcase_09 AC 49 ms
20,040 KB
testcase_10 AC 29 ms
19,328 KB
testcase_11 AC 114 ms
22,060 KB
testcase_12 AC 101 ms
21,760 KB
testcase_13 AC 102 ms
21,632 KB
testcase_14 AC 90 ms
21,236 KB
testcase_15 AC 66 ms
20,736 KB
testcase_16 AC 27 ms
19,188 KB
testcase_17 AC 66 ms
20,572 KB
testcase_18 AC 113 ms
21,888 KB
testcase_19 AC 108 ms
21,728 KB
testcase_20 AC 107 ms
21,632 KB
権限があれば一括ダウンロードができます

ソースコード

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]);
        DP[n][1] += max(DP[x][0]+1,DP[x][1]);
    }
    if(G[n].size() == 1 && G[n][0] == v) DP[n][1] = MIN;
    //cout << n << " " << DP[n][0] << " " << DP[n][1] << endl;
    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]+1,DP[1][1]) << endl;
    return 0;
}
0