結果

問題 No.2427 Tree Distance Two
ユーザー Ping Chung ChangPing Chung Chang
提出日時 2023-08-28 20:21:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 1,379 ms
コンパイル使用メモリ 170,408 KB
実行使用メモリ 40,368 KB
最終ジャッジ日時 2024-06-09 15:28:56
合計ジャッジ時間 9,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
17,452 KB
testcase_01 AC 6 ms
17,452 KB
testcase_02 AC 6 ms
17,456 KB
testcase_03 AC 295 ms
36,788 KB
testcase_04 AC 6 ms
17,584 KB
testcase_05 AC 300 ms
36,912 KB
testcase_06 AC 6 ms
17,584 KB
testcase_07 AC 201 ms
38,404 KB
testcase_08 AC 318 ms
40,368 KB
testcase_09 AC 245 ms
38,448 KB
testcase_10 AC 256 ms
39,340 KB
testcase_11 AC 207 ms
39,156 KB
testcase_12 AC 243 ms
37,696 KB
testcase_13 AC 274 ms
37,388 KB
testcase_14 AC 127 ms
36,148 KB
testcase_15 AC 6 ms
17,452 KB
testcase_16 AC 6 ms
17,584 KB
testcase_17 AC 5 ms
17,580 KB
testcase_18 AC 7 ms
17,580 KB
testcase_19 AC 6 ms
17,456 KB
testcase_20 AC 10 ms
17,968 KB
testcase_21 AC 11 ms
18,096 KB
testcase_22 AC 7 ms
17,584 KB
testcase_23 AC 7 ms
17,584 KB
testcase_24 AC 9 ms
17,968 KB
testcase_25 AC 51 ms
22,704 KB
testcase_26 AC 145 ms
29,492 KB
testcase_27 AC 94 ms
26,036 KB
testcase_28 AC 268 ms
35,376 KB
testcase_29 AC 222 ms
33,328 KB
testcase_30 AC 136 ms
29,104 KB
testcase_31 AC 82 ms
25,004 KB
testcase_32 AC 149 ms
29,104 KB
testcase_33 AC 127 ms
27,692 KB
testcase_34 AC 35 ms
20,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define pll pair<ll,ll>
#define pii pair<int,int>
#define fs first
#define sc second

const int mxn = 3e5+10;
vector<int> tree[mxn];
vector<int> v[mxn];

int main(){
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	int n;
	cin>>n;
	for(int i = 1;i<n;i++){
		int a,b;
		cin>>a>>b;
		tree[a].push_back(b);
		tree[b].push_back(a);
	}
	for(int i = 1;i<=n;i++){
		for(auto &j:tree[i]){
			v[j].push_back(i);
		}
	}
	for(int i = 1;i<=n;i++){
		int sum = 0;
		for(auto &j:v[i])sum += tree[j].size()-1;
		cout<<sum<<'\n';
	}
	return 0;
}
0