結果

問題 No.763 Noelちゃんと木遊び
ユーザー outlineoutline
提出日時 2020-12-24 19:58:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 1,717 bytes
コンパイル時間 1,464 ms
コンパイル使用メモリ 139,516 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-09-21 17:02:06
合計ジャッジ時間 3,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
24,192 KB
testcase_01 AC 16 ms
6,940 KB
testcase_02 AC 38 ms
11,776 KB
testcase_03 AC 25 ms
8,960 KB
testcase_04 AC 18 ms
7,424 KB
testcase_05 AC 26 ms
8,960 KB
testcase_06 AC 50 ms
13,568 KB
testcase_07 AC 46 ms
13,184 KB
testcase_08 AC 27 ms
9,216 KB
testcase_09 AC 19 ms
7,296 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 50 ms
13,696 KB
testcase_12 AC 47 ms
12,672 KB
testcase_13 AC 45 ms
12,416 KB
testcase_14 AC 40 ms
11,520 KB
testcase_15 AC 26 ms
8,832 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 26 ms
8,960 KB
testcase_18 AC 49 ms
13,696 KB
testcase_19 AC 46 ms
12,672 KB
testcase_20 AC 43 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n;
    cin >> n;
    vector<vector<int>> g(n);
    for(int i = 1; i < n; ++i){
        int u, v;
        cin >> u >> v;
        --u, --v;
        g[u].emplace_back(v);
        g[v].emplace_back(u);
    }

    vector<vector<int>> dp(n, vector<int>(2, -1));
    auto func = [&](auto&& self, int v, int i, int par = -1) -> int {
        if(dp[v][i] != -1)  return dp[v][i];
        int res = i;
        for(int ch : g[v]){
            if(ch == par)   continue;
            if(i)   res += max(self(self, ch, 0, v), self(self, ch, 1, v) - 1);
            else    res += max(self(self, ch, 0, v), self(self, ch, 1, v));
        }
        return dp[v][i] = res;
    };

    cout << max(func(func, 0, 0), func(func, 0, 1)) << endl;

    return 0;
}
0