結果

問題 No.2427 Tree Distance Two
ユーザー kotatsugamekotatsugame
提出日時 2023-08-18 21:05:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 72,192 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-11-28 04:45:05
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
12,544 KB
testcase_01 AC 6 ms
12,544 KB
testcase_02 AC 7 ms
12,672 KB
testcase_03 AC 171 ms
22,272 KB
testcase_04 AC 8 ms
12,672 KB
testcase_05 AC 186 ms
22,272 KB
testcase_06 AC 8 ms
12,544 KB
testcase_07 AC 154 ms
23,016 KB
testcase_08 AC 179 ms
24,192 KB
testcase_09 AC 155 ms
23,040 KB
testcase_10 AC 167 ms
23,680 KB
testcase_11 AC 146 ms
23,564 KB
testcase_12 AC 167 ms
22,612 KB
testcase_13 AC 170 ms
22,436 KB
testcase_14 AC 100 ms
22,016 KB
testcase_15 AC 7 ms
12,544 KB
testcase_16 AC 7 ms
12,672 KB
testcase_17 AC 7 ms
12,672 KB
testcase_18 AC 8 ms
12,544 KB
testcase_19 AC 7 ms
12,672 KB
testcase_20 AC 10 ms
12,928 KB
testcase_21 AC 9 ms
12,928 KB
testcase_22 AC 8 ms
12,672 KB
testcase_23 AC 8 ms
12,672 KB
testcase_24 AC 10 ms
12,800 KB
testcase_25 AC 38 ms
15,232 KB
testcase_26 AC 118 ms
18,688 KB
testcase_27 AC 66 ms
16,896 KB
testcase_28 AC 190 ms
21,760 KB
testcase_29 AC 133 ms
20,480 KB
testcase_30 AC 88 ms
18,432 KB
testcase_31 AC 58 ms
16,512 KB
testcase_32 AC 91 ms
18,304 KB
testcase_33 AC 77 ms
17,664 KB
testcase_34 AC 27 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<cassert>
using namespace std;
int N;
vector<int>G[3<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int u,v;cin>>u>>v;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	for(int i=1;i<=N;i++)
	{
		int ans=0;
		for(int v:G[i])ans+=G[v].size()-1;
		cout<<ans<<"\n";
	}
}
0