結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 13 ms
6,016 KB
testcase_02 AC 34 ms
9,216 KB
testcase_03 AC 22 ms
7,296 KB
testcase_04 AC 18 ms
6,272 KB
testcase_05 AC 22 ms
7,424 KB
testcase_06 AC 40 ms
10,368 KB
testcase_07 AC 39 ms
10,368 KB
testcase_08 AC 24 ms
7,680 KB
testcase_09 AC 16 ms
6,144 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 43 ms
10,752 KB
testcase_12 AC 36 ms
9,728 KB
testcase_13 AC 40 ms
9,728 KB
testcase_14 AC 35 ms
9,088 KB
testcase_15 AC 24 ms
7,296 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 24 ms
7,296 KB
testcase_18 AC 43 ms
10,464 KB
testcase_19 AC 39 ms
9,856 KB
testcase_20 AC 38 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