結果

問題 No.806 木を道に
ユーザー addeight2addeight2
提出日時 2019-03-23 10:30:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 1,451 ms
コンパイル使用メモリ 161,528 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-09-22 01:37:01
合計ジャッジ時間 2,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,632 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 3 ms
5,760 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 10 ms
6,528 KB
testcase_11 AC 8 ms
6,400 KB
testcase_12 AC 29 ms
8,804 KB
testcase_13 AC 23 ms
7,936 KB
testcase_14 AC 28 ms
8,704 KB
testcase_15 AC 30 ms
8,828 KB
testcase_16 AC 12 ms
6,784 KB
testcase_17 AC 26 ms
8,448 KB
testcase_18 AC 5 ms
6,016 KB
testcase_19 AC 9 ms
6,528 KB
testcase_20 AC 26 ms
8,320 KB
testcase_21 AC 16 ms
7,296 KB
testcase_22 AC 34 ms
9,344 KB
testcase_23 AC 36 ms
9,344 KB
testcase_24 AC 17 ms
7,296 KB
testcase_25 AC 24 ms
8,064 KB
testcase_26 AC 10 ms
6,708 KB
testcase_27 AC 27 ms
9,224 KB
testcase_28 AC 3 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
#define FOR(i,a,b) for(ll i=(a);i<(b);i++)
#define REP(i,a) FOR(i,0,a)
using namespace std;
ll N;
const ll MAX_N=1e5;
vector<ll> G[MAX_N];
ll dst[MAX_N];
void dfs(ll v,ll p,ll d){
	dst[v]=d;
	for(auto e:G[v]){
		if(e!=p){
			dfs(e,v,d+1);
		}
	}
}
int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cin>>N;
	REP(i,N-1){
		ll a,b;
		cin>>a>>b;
		a--;
		b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	ll ans=0;
	REP(i,N){
		ans+=max((ll)G[i].size()-2,0ll);
	}
	cout<<ans<<endl;
}
0