結果

問題 No.806 木を道に
ユーザー hiroahiroa
提出日時 2019-05-03 09:13:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 168,732 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-12-31 14:07:49
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 4 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 16 ms
6,820 KB
testcase_11 AC 15 ms
6,820 KB
testcase_12 AC 59 ms
8,544 KB
testcase_13 AC 43 ms
7,808 KB
testcase_14 AC 55 ms
8,320 KB
testcase_15 AC 57 ms
8,536 KB
testcase_16 AC 22 ms
6,816 KB
testcase_17 AC 50 ms
8,148 KB
testcase_18 AC 8 ms
6,820 KB
testcase_19 AC 17 ms
6,820 KB
testcase_20 AC 52 ms
8,064 KB
testcase_21 AC 31 ms
7,168 KB
testcase_22 AC 69 ms
8,960 KB
testcase_23 AC 76 ms
9,088 KB
testcase_24 AC 37 ms
7,424 KB
testcase_25 AC 55 ms
8,196 KB
testcase_26 AC 20 ms
6,864 KB
testcase_27 AC 60 ms
8,952 KB
testcase_28 AC 4 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MOD 1000000007
#define INF 1e9

const int MAX_N=100010;
vector<int> G[MAX_N];

int main(){
    int N;
    cin>>N;
    
    for(int i=0;i<N-1;i++){
        int a,b;
        cin>>a>>b;
        a--,b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    
    int ans=0;
    for(int i=0;i<N;i++){
        ans+=max(0,(int)G[i].size()-2);
    }
    cout<<ans<<endl;
    
}
0