結果

問題 No.806 木を道に
ユーザー startcpp
提出日時 2019-03-22 22:09:08
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 56,956 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 05:36:43
合計ジャッジ時間 2,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n;
int cnt[100000];

int main() {
	int i;
	
	cin >> n;
	for (i = 0; i < n - 1; i++) {
		int a, b;
		cin >> a >> b; a--; b--;
		cnt[a]++;
		cnt[b]++;
	}
	
	int ans = 0;
	for (i = 0; i < n; i++) {
		if (cnt[i] >= 3) {
			ans += cnt[i] - 2;
		}
	}
	cout << ans << endl;
	return 0;
}
0