結果

問題 No.806 木を道に
ユーザー finefine
提出日時 2019-03-22 22:38:38
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 170,872 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2023-10-19 09:52:35
合計ジャッジ時間 3,145 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 10 ms
4,516 KB
testcase_11 AC 9 ms
4,348 KB
testcase_12 AC 40 ms
7,948 KB
testcase_13 AC 27 ms
6,628 KB
testcase_14 AC 36 ms
7,684 KB
testcase_15 AC 40 ms
7,948 KB
testcase_16 AC 13 ms
5,044 KB
testcase_17 AC 33 ms
7,420 KB
testcase_18 AC 4 ms
4,348 KB
testcase_19 AC 11 ms
4,516 KB
testcase_20 AC 35 ms
7,420 KB
testcase_21 AC 19 ms
5,572 KB
testcase_22 AC 51 ms
8,740 KB
testcase_23 AC 52 ms
8,740 KB
testcase_24 AC 21 ms
10,324 KB
testcase_25 AC 32 ms
13,756 KB
testcase_26 AC 10 ms
5,048 KB
testcase_27 AC 29 ms
9,004 KB
testcase_28 AC 3 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int solve(int cur, int par, vector< vector<int> >& g) {
    int res = 0;
    int cnt = 0;
    for (int nex : g[cur]) {
        if (nex == par) continue;
        res += solve(nex, cur, g);
        cnt++;
    }
    res += max(cnt - 1 - (cur == 0), 0);
    return res;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector< vector<int> > g(n);
    for (int i = 1; i < n; i++) {
        int a, b;
        cin >> a >> b;
        a--; b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }

    cout << solve(0, -1, g) << endl;
    return 0;
}
0