結果

問題 No.763 Noelちゃんと木遊び
ユーザー TiramisterTiramister
提出日時 2018-12-20 19:51:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 73,040 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-09-25 09:10:33
合計ジャッジ時間 3,161 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
18,432 KB
testcase_01 AC 32 ms
6,940 KB
testcase_02 AC 79 ms
8,448 KB
testcase_03 AC 49 ms
7,552 KB
testcase_04 AC 36 ms
7,040 KB
testcase_05 AC 49 ms
7,552 KB
testcase_06 AC 99 ms
8,960 KB
testcase_07 AC 100 ms
8,832 KB
testcase_08 AC 54 ms
7,552 KB
testcase_09 AC 34 ms
7,040 KB
testcase_10 AC 15 ms
6,944 KB
testcase_11 AC 100 ms
8,960 KB
testcase_12 AC 85 ms
8,500 KB
testcase_13 AC 85 ms
8,664 KB
testcase_14 AC 73 ms
8,316 KB
testcase_15 AC 50 ms
7,552 KB
testcase_16 AC 10 ms
6,940 KB
testcase_17 AC 51 ms
7,552 KB
testcase_18 AC 98 ms
8,960 KB
testcase_19 AC 89 ms
8,704 KB
testcase_20 AC 88 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

vector<int> path[100010];
bool visited[100010];

pair<int, int> dfs(int v) {
    visited[v] = true;

    vector<pair<int, int>> res;
    for (int sv : path[v]) {
        if (visited[sv]) continue;

        res.push_back(dfs(sv));
    }

    pair<int, int> ret = make_pair(0, 1);
    for (auto p : res) {
        ret.first += max(p.first, p.second);
        ret.second += max(p.first, p.second - 1);
    }

    return ret;
}

int main() {
    int N;
    cin >> N;

    for (int i = 0; i < N - 1; ++i) {
        int u, v;
        cin >> u >> v;
        --u, --v;
        path[u].push_back(v);
        path[v].push_back(u);
    }

    pair<int, int> ret = dfs(0);
    cout << max(ret.first, ret.second) << endl;
    return 0;
}
0