結果
問題 | No.2427 Tree Distance Two |
ユーザー | porkleoi |
提出日時 | 2023-08-18 21:41:31 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 703 ms / 2,000 ms |
コード長 | 2,046 bytes |
コンパイル時間 | 2,769 ms |
コンパイル使用メモリ | 249,916 KB |
実行使用メモリ | 21,836 KB |
最終ジャッジ日時 | 2024-11-28 06:15:13 |
合計ジャッジ時間 | 14,776 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 668 ms
19,968 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 655 ms
19,968 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 607 ms
20,684 KB |
testcase_08 | AC | 626 ms
21,836 KB |
testcase_09 | AC | 606 ms
20,944 KB |
testcase_10 | AC | 618 ms
21,336 KB |
testcase_11 | AC | 666 ms
21,608 KB |
testcase_12 | AC | 703 ms
20,404 KB |
testcase_13 | AC | 658 ms
20,228 KB |
testcase_14 | AC | 540 ms
19,584 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 15 ms
5,248 KB |
testcase_21 | AC | 17 ms
5,248 KB |
testcase_22 | AC | 5 ms
5,248 KB |
testcase_23 | AC | 4 ms
5,248 KB |
testcase_24 | AC | 15 ms
5,248 KB |
testcase_25 | AC | 147 ms
7,552 KB |
testcase_26 | AC | 384 ms
13,568 KB |
testcase_27 | AC | 262 ms
10,628 KB |
testcase_28 | AC | 598 ms
18,816 KB |
testcase_29 | AC | 535 ms
16,768 KB |
testcase_30 | AC | 378 ms
13,312 KB |
testcase_31 | AC | 228 ms
9,728 KB |
testcase_32 | AC | 379 ms
13,140 KB |
testcase_33 | AC | 333 ms
12,128 KB |
testcase_34 | AC | 103 ms
6,016 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (ll i = 0; i < (ll)(n); i++) #define rep2(i, s, n) for (ll i = s; i <= (ll)(n); i++) #define rep3(i, s, n, d) for (ll i = s; i <= (ll)(n); i += d) #define rep4(i, s, n, d) for (ll i = s; i >= (ll)(n); i += d) typedef long long ll; typedef long double ld; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<vvi> vvvi; typedef vector<string> vs; typedef vector<vs> vvs; typedef vector<vvs> vvvs; typedef vector<char> vc; typedef vector<vc> vvc; typedef vector<vvc> vvvc; typedef vector<ll> vll; typedef vector<vll> vvll; typedef vector<vvll> vvvll; typedef vector<double> vd; typedef vector<vd> vvd; typedef vector<vvd> vvvd; typedef vector<ld> vld; typedef vector<vld> vvld; typedef vector<vvld> vvvld; typedef vector<bool> vb; typedef vector<vd> vvb; typedef vector<vvd> vvvb; typedef vector<pair<int, int>> vpi; typedef vector<pair<ll, ll>> vpll; typedef priority_queue<int, vector<int>, greater<int>> pqi; typedef priority_queue<vi, vector<vi>, greater<vi>> pqvi; typedef priority_queue<vll, vector<vll>, greater<vll>> pqvll; typedef priority_queue<int, vector<int>, less<int>> rpqi; #define yes(ans) if(ans)cout << "yes"<< endl; else cout << "no" << endl #define Yes(ans) if(ans)cout << "Yes"<< endl; else cout << "No" << endl #define YES(ans) if(ans)cout << "YES"<< endl ;else cout << "NO" << endl #define all1(x) x.begin(),x.end() #define all2(x) x.rbegin(), x.rend() #define so(x) sort(all1(x)) #define re(x) reverse(all1(x)) #define rso(x) sort(all2(x)) #define vco(x, a) count(all1(x), a) #define per(x) next_permutation(all1(x)) #define iINF 2147483647 #define llINF 9223372036854775807 #define mod 998244353 #define mod2 1000000007 int main(){ int n; cin >> n; vvi vec(n, vi(0)); rep(i, n-1){ int a, b; cin >> a >> b; a--, b--; vec[a].push_back(b); vec[b].push_back(a); } rep(i, n){ int ans = 0; rep(j, vec[i].size()) ans += vec[vec[i][j]].size()-1; cout << ans << endl; } }