結果

問題 No.806 木を道に
ユーザー Y17Y17
提出日時 2019-03-22 22:04:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 994 bytes
コンパイル時間 1,441 ms
コンパイル使用メモリ 160,104 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-09-19 05:24:24
合計ジャッジ時間 3,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,016 KB
testcase_01 AC 3 ms
6,144 KB
testcase_02 AC 3 ms
6,144 KB
testcase_03 AC 3 ms
6,272 KB
testcase_04 AC 3 ms
6,144 KB
testcase_05 AC 3 ms
6,016 KB
testcase_06 AC 4 ms
6,016 KB
testcase_07 AC 4 ms
6,144 KB
testcase_08 AC 4 ms
5,888 KB
testcase_09 AC 4 ms
6,144 KB
testcase_10 AC 20 ms
6,784 KB
testcase_11 AC 17 ms
6,912 KB
testcase_12 AC 80 ms
9,216 KB
testcase_13 AC 52 ms
8,192 KB
testcase_14 AC 64 ms
8,960 KB
testcase_15 AC 67 ms
9,216 KB
testcase_16 AC 24 ms
7,296 KB
testcase_17 AC 61 ms
8,832 KB
testcase_18 AC 9 ms
6,400 KB
testcase_19 AC 20 ms
7,040 KB
testcase_20 AC 60 ms
8,832 KB
testcase_21 AC 39 ms
7,680 KB
testcase_22 AC 90 ms
9,600 KB
testcase_23 AC 82 ms
9,728 KB
testcase_24 AC 41 ms
10,240 KB
testcase_25 AC 62 ms
12,672 KB
testcase_26 AC 21 ms
7,424 KB
testcase_27 AC 67 ms
9,604 KB
testcase_28 AC 5 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int> graph[100010];
int vi[100010] = {};

int dfs(int idx){
    vi[idx] = 1;
    bool flag = false;
    int ans = 0;
    for(int i = 0;i < graph[idx].size();i++){
        if(vi[graph[idx][i]] == 0){
            flag = true;
            ans += dfs(graph[idx][i]);
        }
    }

    if(flag){
        return ans;
    }else{
        return 1;
    }
}

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

    int a, b;
    for(int i = 0;i < n-1;i++){
        cin >> a >> b;
        a--, b--;
        graph[a].push_back(b);
        graph[b].push_back(a);
    }

    int used[100010] = {};
    int root = 0;

    bool flag;

    do{
        flag = false;
        used[root] = 1;
        for(int i = 0;i < graph[root].size();i++){
            if(used[graph[root][i]] == 0){
                flag = true;
                root = graph[root][i];
                break;
            }
        }
    }while(flag);

    cout << dfs(root)-1 << endl;
    return 0;
}

0