結果

問題 No.763 Noelちゃんと木遊び
ユーザー firiexpfiriexp
提出日時 2019-08-26 20:05:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,291 bytes
コンパイル時間 1,202 ms
コンパイル使用メモリ 105,260 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-15 19:12:26
合計ジャッジ時間 3,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,752 KB
testcase_01 AC 17 ms
6,816 KB
testcase_02 AC 41 ms
9,344 KB
testcase_03 AC 27 ms
7,296 KB
testcase_04 AC 19 ms
6,816 KB
testcase_05 AC 26 ms
7,296 KB
testcase_06 AC 49 ms
10,496 KB
testcase_07 AC 45 ms
10,240 KB
testcase_08 AC 28 ms
7,552 KB
testcase_09 AC 18 ms
6,820 KB
testcase_10 AC 8 ms
6,816 KB
testcase_11 AC 52 ms
10,752 KB
testcase_12 AC 44 ms
9,600 KB
testcase_13 AC 44 ms
9,600 KB
testcase_14 AC 38 ms
8,832 KB
testcase_15 AC 26 ms
7,296 KB
testcase_16 AC 5 ms
6,820 KB
testcase_17 AC 27 ms
7,296 KB
testcase_18 AC 52 ms
10,496 KB
testcase_19 AC 46 ms
9,984 KB
testcase_20 AC 45 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

int main() {
    int n;
    cin >> n;
    vector<vector<int>> G(n);
    for (int i = 0; i < n-1; ++i) {
        int a, b;
        scanf("%d %d", &a, &b); a--; b--;
        G[a].emplace_back(b);
        G[b].emplace_back(a);
    }
    deque<int> Q;
    stack<int> s;
    int cnt = 0;
    vector<int> visited(n, 0), num(n);
    s.emplace(0);
    while(!s.empty()){
        int a = s.top(); s.pop();
        visited[a]++;
        num[a] = cnt++;
        Q.emplace_front(a);
        for (auto &&i : G[a]) {
            if(!visited[i]) s.emplace(i);
        }
    }
    vector<int> dp1(n), dp2(n, 1);
    for (auto &&i : Q) {
        int c = 0;
        for (auto &&j : G[i]) {
            if(num[i] < num[j]){
                c++;
                dp1[i] += max(dp1[j], dp2[j]);
                dp2[i] += max(dp1[j], dp2[j]-1);
            }
        }
    }
    cout << max(dp1.front(), dp2.front()) << "\n";
    return 0;
}
0