結果

問題 No.763 Noelちゃんと木遊び
ユーザー toyontoyon
提出日時 2020-03-15 08:47:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 934 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 171,732 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-11-24 12:01:59
合計ジャッジ時間 4,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
18,048 KB
testcase_01 AC 30 ms
5,760 KB
testcase_02 AC 76 ms
9,088 KB
testcase_03 AC 49 ms
7,296 KB
testcase_04 AC 35 ms
6,144 KB
testcase_05 AC 46 ms
7,168 KB
testcase_06 AC 95 ms
10,368 KB
testcase_07 AC 90 ms
10,112 KB
testcase_08 AC 51 ms
7,552 KB
testcase_09 AC 32 ms
6,016 KB
testcase_10 AC 13 ms
5,248 KB
testcase_11 AC 96 ms
10,496 KB
testcase_12 AC 83 ms
9,728 KB
testcase_13 AC 81 ms
9,600 KB
testcase_14 AC 72 ms
9,088 KB
testcase_15 AC 49 ms
7,168 KB
testcase_16 AC 9 ms
5,248 KB
testcase_17 AC 50 ms
7,296 KB
testcase_18 AC 99 ms
10,368 KB
testcase_19 AC 83 ms
9,728 KB
testcase_20 AC 85 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define sz(x) int(x.size())
using namespace std;

typedef long long ll;
// const int INF = 1e8;
const ll INF = 1LL << 60;
typedef pair<int, int> P;

ll N;
vector<vector<ll>> G;
ll dp[100100][2];
// dp[v][erase] 
// erase 0: 消さない 1: 消す

void dfs(ll v, ll par = -1) {
    dp[v][0] = 1; dp[v][1] = 0; 
    for (ll i = 0; i < G[v].size(); i++) {
        ll next = G[v][i];
        if (next != par) {
            dfs(next, v);
            // 消さない
            dp[v][0] += max(dp[next][0] - 1, dp[next][1]);

            // 消す
            dp[v][1] += max(dp[next][0], dp[next][1]);
        }
    }
}

int main() {
    cin >> N;
    G.resize(N);

    rep(i, N - 1) {
        ll u, v;
        cin >> u >> v;
        u--; v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }

    dfs(0);

    cout << max(dp[0][0], dp[0][1]) << endl;
}
0