結果

問題 No.806 木を道に
ユーザー face4face4
提出日時 2019-03-22 21:51:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 78,676 KB
実行使用メモリ 9,532 KB
最終ジャッジ日時 2024-09-19 05:13:58
合計ジャッジ時間 2,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 17 ms
5,376 KB
testcase_11 AC 15 ms
5,376 KB
testcase_12 AC 62 ms
8,192 KB
testcase_13 AC 43 ms
6,912 KB
testcase_14 AC 59 ms
7,936 KB
testcase_15 AC 60 ms
8,192 KB
testcase_16 AC 22 ms
5,376 KB
testcase_17 AC 56 ms
7,552 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 16 ms
5,376 KB
testcase_20 AC 54 ms
7,680 KB
testcase_21 AC 30 ms
5,760 KB
testcase_22 AC 76 ms
8,960 KB
testcase_23 AC 75 ms
9,088 KB
testcase_24 AC 35 ms
6,528 KB
testcase_25 AC 54 ms
7,808 KB
testcase_26 AC 20 ms
5,376 KB
testcase_27 AC 62 ms
9,532 KB
testcase_28 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;

int main(){
    int n;
    cin >> n;
    vector<int> v[n];
    int a, b;
    for(int i = 0; i < n-1; i++){
        cin >> a >> b;
        a--, b--;
        v[a].push_back(b);
        v[b].push_back(a);
    }
    vector<bool> visit(n, 0);
    int i;
    for(i = 0;;i++) if(v[i].size() == 1)    break;
    queue<int> q;
    q.push(i);
    int ans = 0;
    while(!q.empty()){
        int x = q.front();  q.pop();
        if(visit[x])    continue;
        visit[x] = true;
        if(v[x].size() > 2){
            ans += v[x].size()-2;
        }
        for(int next : v[x]){
            if(!visit[next])    q.push(next);
        }
    }
    cout << ans << endl;
    return 0;
}
0