結果

問題 No.2427 Tree Distance Two
ユーザー 👑 potato167potato167
提出日時 2023-08-15 21:20:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 203,252 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-05-03 07:53:45
合計ジャッジ時間 12,351 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 403 ms
19,968 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 417 ms
19,968 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 327 ms
20,808 KB
testcase_08 AC 353 ms
21,888 KB
testcase_09 AC 343 ms
20,864 KB
testcase_10 AC 348 ms
21,376 KB
testcase_11 AC 340 ms
21,472 KB
testcase_12 AC 365 ms
20,404 KB
testcase_13 AC 368 ms
20,224 KB
testcase_14 AC 246 ms
19,584 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 79 ms
7,680 KB
testcase_26 AC 231 ms
13,568 KB
testcase_27 AC 154 ms
10,624 KB
testcase_28 AC 378 ms
18,688 KB
testcase_29 AC 324 ms
16,896 KB
testcase_30 AC 229 ms
13,440 KB
testcase_31 AC 135 ms
9,728 KB
testcase_32 AC 225 ms
13,312 KB
testcase_33 AC 194 ms
12,032 KB
testcase_34 AC 48 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(p) p.begin(),p.end()
#define rep(i,a,b) for(int i=(int)a;i<(int)b;i++)

int main(){
	int N;
	cin>>N;
	vector<vector<int>> G(N);
	rep(i,0,N-1){
		int a,b;
		cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	rep(i,0,N){
		int ans=-(int)G[i].size();
		for(auto x:G[i]) ans+=(int)G[x].size();
		cout<<ans<<"\n";
	}
}
0