結果
問題 | No.806 木を道に |
ユーザー | beet |
提出日時 | 2019-03-22 21:33:13 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 532 bytes |
コンパイル時間 | 1,848 ms |
コンパイル使用メモリ | 195,760 KB |
最終ジャッジ日時 | 2025-01-06 23:45:16 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 27 |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE signed main(){ Int n; cin>>n; vector<vector<Int> > G(n); for(Int i=1;i<n;i++){ Int x,y; cin>>x>>y; x--;y--; G[x].emplace_back(y); G[y].emplace_back(x); } Int ans=0; for(Int i=0;i<n;i++) ans+=max(0LL,(Int)G[i].size()-2); cout<<ans<<endl; return 0; }