結果

問題 No.763 Noelちゃんと木遊び
ユーザー arktan763arktan763
提出日時 2019-10-10 16:51:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 3,461 bytes
コンパイル時間 1,604 ms
コンパイル使用メモリ 173,192 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-05-01 10:15:03
合計ジャッジ時間 3,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
16,512 KB
testcase_01 AC 29 ms
6,944 KB
testcase_02 AC 72 ms
9,088 KB
testcase_03 AC 46 ms
7,424 KB
testcase_04 AC 32 ms
6,944 KB
testcase_05 AC 44 ms
7,168 KB
testcase_06 AC 91 ms
10,368 KB
testcase_07 AC 89 ms
10,112 KB
testcase_08 AC 50 ms
7,424 KB
testcase_09 AC 32 ms
6,944 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 93 ms
10,496 KB
testcase_12 AC 79 ms
9,856 KB
testcase_13 AC 78 ms
9,728 KB
testcase_14 AC 68 ms
9,088 KB
testcase_15 AC 47 ms
7,168 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 48 ms
7,296 KB
testcase_18 AC 91 ms
10,368 KB
testcase_19 AC 83 ms
9,728 KB
testcase_20 AC 82 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define int long long
// #define double long double
#define FOR(i, a, b) for(ll i = (a); i < (b); ++i)
#define FORR(i, a, b) for(ll i = (a); i > (b); --i)
#define REP(i, n) for(ll i = 0; i < (n); ++i)
#define REPR(i, n) for(ll i = n; i >= 0; i--)
#define FOREACH(x, a) for(auto &(x) : (a))
#define VECCIN(x)                                                              \
    for(auto &youso_ : (x)) cin >> youso_
#define bitcnt(x) __builtin_popcount(x)
#define lbit(x) __builtin_ffsll(x)
#define rbit(x) __builtin_clzll(x)
#define SZ(x) ((ll)(x).size())
#define fi first
#define se second
#define All(a) (a).begin(), (a).end()
#define rAll(a) (a).rbegin(), (a).rend()

template <typename T = long long> inline T IN() {
    T x;
    cin >> x;
    return (x);
}
inline void CIN() {}
template <class Head, class... Tail>
inline void CIN(Head &&head, Tail &&... tail) {
    cin >> head;
    CIN(move(tail)...);
}
#define CCIN(...)                                                              \
    char __VA_ARGS__;                                                          \
    CIN(__VA_ARGS__)
#define DCIN(...)                                                              \
    double __VA_ARGS__;                                                        \
    CIN(__VA_ARGS__)
#define LCIN(...)                                                              \
    ll __VA_ARGS__;                                                            \
    CIN(__VA_ARGS__)
#define SCIN(...)                                                              \
    string __VA_ARGS__;                                                        \
    CIN(__VA_ARGS__)
#define Yes(a) cout << (a ? "Yes" : "No") << "\n"
#define YES(a) cout << (a ? "YES" : "NO") << "\n"
#define Printv(v)                                                              \
    {                                                                          \
        FOREACH(x, v) { cout << x << " "; }                                    \
        cout << "\n";                                                          \
    }
template <typename T = string> inline void eputs(T s) {
    cout << s << "\n";
    exit(0);
}
template <typename A, size_t N, typename T>
void Fill(A (&array)[N], const T &val) {
    std::fill((T *)array, (T *)(array + N), val);
}

template <typename T> using PQG = priority_queue<T, vector<T>, greater<T>>;
template <typename T> using PQ = priority_queue<T>;

typedef long long ll;
typedef vector<ll> VL;
typedef vector<VL> VVL;
typedef pair<ll, ll> PL;
typedef vector<PL> VPL;
typedef vector<bool> VB;
typedef vector<double> VD;
typedef vector<string> VS;

const int INF = 1e9;
const int MOD = 1e9 + 7;
// const int MOD = 998244353;
const ll LINF = 1e18;
// const double PI = atan(1.0) * 4.0;
const ll dx[] = {1, 1, 0, -1, -1, -1, 0, 1};
const ll dy[] = {0, 1, 1, 1, 0, -1, -1, -1};
#define PI 3.141592653589793238

ll N;
VVL G;
ll dp[100000][2];

void dfs(ll now, ll par) {
    dp[now][0] = 1;
    dp[now][1] = 0;
    FOREACH(to, G[now]) {
        if(to == par) continue;
        dfs(to, now);
        dp[now][0] += max(dp[to][0] - 1, dp[to][1]);
        dp[now][1] += max(dp[to][0], dp[to][1]);
    }
}

signed main() {
    cin >> N;
    G.resize(N);
    REP(i, N - 1) {
        LCIN(u, v);
        u--, v--;
        G[u].emplace_back(v);
        G[v].emplace_back(u);
    }
    dfs(0, -1);
    cout << max(dp[0][0], dp[0][1]) << "\n";
}
0