結果
問題 | No.2427 Tree Distance Two |
ユーザー | momoyuu |
提出日時 | 2023-08-18 21:08:04 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 663 ms / 2,000 ms |
コード長 | 407 bytes |
コンパイル時間 | 2,454 ms |
コンパイル使用メモリ | 248,356 KB |
実行使用メモリ | 22,060 KB |
最終ジャッジ日時 | 2024-11-28 04:53:49 |
合計ジャッジ時間 | 14,381 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; int main(){ int n; cin>>n; vector<vector<int>> g(n); for(int i = 0;i<n-1;i++){ int u,v; cin>>u>>v; u--;v--; g[u].push_back(v); g[v].push_back(u); } for(int i = 0;i<n;i++){ ll ans = 0; for(auto&to:g[i]) ans += g[to].size()-1; cout<<ans<<endl; } }