結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
18,048 KB
testcase_01 AC 25 ms
6,944 KB
testcase_02 AC 56 ms
9,088 KB
testcase_03 AC 40 ms
7,296 KB
testcase_04 AC 28 ms
6,940 KB
testcase_05 AC 37 ms
7,168 KB
testcase_06 AC 67 ms
10,368 KB
testcase_07 AC 69 ms
10,112 KB
testcase_08 AC 42 ms
7,424 KB
testcase_09 AC 27 ms
6,940 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 70 ms
10,496 KB
testcase_12 AC 62 ms
9,728 KB
testcase_13 AC 60 ms
9,600 KB
testcase_14 AC 54 ms
8,960 KB
testcase_15 AC 39 ms
7,296 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 39 ms
7,296 KB
testcase_18 AC 71 ms
10,368 KB
testcase_19 AC 67 ms
9,728 KB
testcase_20 AC 63 ms
9,984 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