結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー publflpublfl
提出日時 2021-03-05 21:47:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 49,280 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-10-07 01:22:43
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,376 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,504 KB
testcase_03 AC 67 ms
8,960 KB
testcase_04 AC 62 ms
8,960 KB
testcase_05 AC 63 ms
8,960 KB
testcase_06 AC 63 ms
9,088 KB
testcase_07 AC 55 ms
8,960 KB
testcase_08 AC 36 ms
7,808 KB
testcase_09 AC 18 ms
6,528 KB
testcase_10 AC 19 ms
6,656 KB
testcase_11 AC 12 ms
6,144 KB
testcase_12 AC 30 ms
7,360 KB
testcase_13 AC 33 ms
7,808 KB
testcase_14 AC 34 ms
7,936 KB
testcase_15 AC 26 ms
7,168 KB
testcase_16 AC 6 ms
5,632 KB
testcase_17 AC 6 ms
5,760 KB
testcase_18 AC 49 ms
8,704 KB
testcase_19 AC 10 ms
6,016 KB
testcase_20 AC 4 ms
5,632 KB
testcase_21 AC 26 ms
7,168 KB
testcase_22 AC 22 ms
6,912 KB
testcase_23 AC 5 ms
5,504 KB
testcase_24 AC 5 ms
5,632 KB
testcase_25 AC 4 ms
5,504 KB
testcase_26 AC 5 ms
5,504 KB
testcase_27 AC 4 ms
5,504 KB
testcase_28 AC 4 ms
5,504 KB
testcase_29 AC 6 ms
5,632 KB
testcase_30 AC 5 ms
5,760 KB
testcase_31 AC 4 ms
5,504 KB
testcase_32 AC 4 ms
5,632 KB
testcase_33 AC 15 ms
7,936 KB
testcase_34 AC 59 ms
16,640 KB
testcase_35 AC 23 ms
10,240 KB
testcase_36 AC 7 ms
5,888 KB
testcase_37 AC 36 ms
8,948 KB
testcase_38 AC 31 ms
8,568 KB
testcase_39 AC 3 ms
5,504 KB
testcase_40 AC 3 ms
5,504 KB
testcase_41 AC 3 ms
5,504 KB
testcase_42 AC 4 ms
5,504 KB
testcase_43 AC 4 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>

int a;
long long int ans = 0;
std::vector<int> V[100010];

int check[100010];
int getSize(int k, int prev)
{
	if(check[k]) return check[k];
	int ans = 1;
	for(int i=0;i<V[k].size();i++)
	{
		if(V[k][i]==prev) continue;
		ans += getSize(V[k][i],k);
	}
	return check[k] = ans;
}

void func(int k, int prev)
{
	ans += 1LL * (a-getSize(k,prev))*getSize(k,prev);
	ans += a;
	for(int i=0;i<V[k].size();i++)
	{
		if(V[k][i]==prev) continue;
		int t = getSize(V[k][i],k);
		ans += 1LL * (a-t) * t;
		func(V[k][i],k);
	}
}
int main()
{
	scanf("%d",&a);
	for(int i=1;i<a;i++)
	{
		int b,c;
		scanf("%d%d",&b,&c);
		V[b].push_back(c);
		V[c].push_back(b);
	}
	func(1,0);
	printf("%lld\n",ans);
}
0