結果

問題 No.1098 LCAs
ユーザー kotatsugamekotatsugame
提出日時 2020-06-26 21:49:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 72,320 KB
実行使用メモリ 40,704 KB
最終ジャッジ日時 2024-07-04 20:39:16
合計ジャッジ時間 7,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,600 KB
testcase_01 AC 6 ms
9,600 KB
testcase_02 AC 6 ms
9,600 KB
testcase_03 AC 6 ms
9,600 KB
testcase_04 AC 6 ms
9,600 KB
testcase_05 AC 5 ms
9,600 KB
testcase_06 AC 6 ms
9,600 KB
testcase_07 AC 5 ms
9,472 KB
testcase_08 AC 6 ms
9,600 KB
testcase_09 AC 5 ms
9,600 KB
testcase_10 AC 5 ms
9,600 KB
testcase_11 AC 6 ms
9,600 KB
testcase_12 AC 6 ms
9,600 KB
testcase_13 AC 8 ms
9,728 KB
testcase_14 AC 8 ms
9,600 KB
testcase_15 AC 8 ms
9,472 KB
testcase_16 AC 8 ms
9,600 KB
testcase_17 AC 9 ms
9,600 KB
testcase_18 AC 458 ms
17,664 KB
testcase_19 AC 436 ms
17,664 KB
testcase_20 AC 447 ms
17,664 KB
testcase_21 AC 453 ms
17,664 KB
testcase_22 AC 446 ms
17,664 KB
testcase_23 AC 364 ms
20,248 KB
testcase_24 AC 375 ms
20,120 KB
testcase_25 AC 372 ms
20,324 KB
testcase_26 AC 394 ms
20,192 KB
testcase_27 AC 385 ms
20,324 KB
testcase_28 AC 498 ms
38,784 KB
testcase_29 AC 493 ms
40,704 KB
testcase_30 AC 465 ms
38,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:24:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   24 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N;
vector<int>G[2<<17];
long ans[2<<17];
long dfs(int u,int p)
{
	long c=1;
	vector<long>now;
	for(int v:G[u])if(v!=p)
	{
		long t=dfs(v,u);
		now.push_back(t);
		c+=t;
	}
	ans[u]=c;
	for(long x:now)
	{
		ans[u]+=(c-x)*x;
	}
	return c;
}
main()
{
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	dfs(0,-1);
	for(int i=0;i<N;i++)cout<<ans[i]<<endl;
}
0