結果

問題 No.806 木を道に
ユーザー TlapesiumTlapesium
提出日時 2019-03-22 21:48:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 193,352 KB
最終ジャッジ日時 2025-01-06 23:48:20
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF 2147483647
#define INF_LL 9223372036854775807
#define MOD 1000000007
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

int main() {
	int N;
	cin >> N;
	vector<int> mat(N, 0);
	for (int i = 0; i < N-1; i++) {
		int a, b;
		cin >> a >> b;
		a--; b--;
		mat[a]++; mat[b]++;
	}
	int ans = 0;
	for (int i = 0; i < N; i++) {
		if (mat[i] > 2)ans += mat[i] - 2;
	}
	cout << ans << endl;
}
0