結果

問題 No.806 木を道に
ユーザー chocobochocobo
提出日時 2019-03-22 21:32:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 78,308 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 02:52:48
合計ジャッジ時間 2,198 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <map>
#include <queue>
#include <string>
#include <algorithm>

#define REP(i, n) for(ll i = 0; i < (n); i++)
#define INF 1e16
#define MOD 1e9 + 7

using namespace std;
using ll = long long;



int main() {
	ll n;
	cin >> n;
	vector<ll> cnt(n);
	REP(i, n - 1) {
		ll a, b;
		cin >> a >> b;
		a--; b--;
		cnt[a]++;
		cnt[b]++;
	}
	ll ans = 0;
	REP(i, n) {
		ans += max(0LL, cnt[i] - 2);
	}
	cout << ans << endl;
}
0