結果
問題 |
No.806 木を道に
|
ユーザー |
|
提出日時 | 2019-03-30 22:21:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 20 ms / 2,000 ms |
コード長 | 406 bytes |
コンパイル時間 | 1,817 ms |
コンパイル使用メモリ | 167,564 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 07:32:30 |
合計ジャッジ時間 | 3,183 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 27 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; vector<int> deg(N, 0); for (int i = 0; i < N - 1; ++i){ int a, b; cin >> a >> b; ++deg[a-1]; ++deg[b-1]; } int res = 0; for (auto &d : deg){ if (d > 2) res += d - 2; } cout << res << endl; return 0; }