結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー ゆにぽけゆにぽけ
提出日時 2023-10-16 12:45:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 1,239 ms
コンパイル使用メモリ 128,636 KB
実行使用メモリ 18,604 KB
最終ジャッジ日時 2024-09-16 22:13:28
合計ジャッジ時間 4,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,400 KB
testcase_01 AC 3 ms
6,656 KB
testcase_02 AC 3 ms
6,528 KB
testcase_03 AC 41 ms
10,752 KB
testcase_04 AC 40 ms
10,752 KB
testcase_05 AC 42 ms
10,752 KB
testcase_06 AC 42 ms
10,752 KB
testcase_07 AC 41 ms
10,880 KB
testcase_08 AC 28 ms
9,472 KB
testcase_09 AC 14 ms
7,880 KB
testcase_10 AC 15 ms
8,064 KB
testcase_11 AC 9 ms
7,424 KB
testcase_12 AC 23 ms
8,880 KB
testcase_13 AC 26 ms
9,148 KB
testcase_14 AC 27 ms
9,344 KB
testcase_15 AC 21 ms
8,540 KB
testcase_16 AC 4 ms
6,784 KB
testcase_17 AC 4 ms
6,912 KB
testcase_18 AC 37 ms
10,496 KB
testcase_19 AC 9 ms
7,168 KB
testcase_20 AC 4 ms
6,528 KB
testcase_21 AC 20 ms
8,704 KB
testcase_22 AC 19 ms
8,448 KB
testcase_23 AC 4 ms
6,784 KB
testcase_24 AC 4 ms
6,656 KB
testcase_25 AC 3 ms
6,528 KB
testcase_26 AC 4 ms
6,656 KB
testcase_27 AC 3 ms
6,528 KB
testcase_28 AC 3 ms
6,656 KB
testcase_29 AC 4 ms
6,784 KB
testcase_30 AC 4 ms
6,784 KB
testcase_31 AC 3 ms
6,656 KB
testcase_32 AC 3 ms
6,656 KB
testcase_33 AC 11 ms
9,204 KB
testcase_34 AC 45 ms
18,604 KB
testcase_35 AC 19 ms
11,648 KB
testcase_36 AC 6 ms
7,040 KB
testcase_37 AC 25 ms
10,740 KB
testcase_38 AC 24 ms
10,356 KB
testcase_39 AC 3 ms
6,528 KB
testcase_40 AC 3 ms
6,528 KB
testcase_41 AC 2 ms
6,400 KB
testcase_42 AC 3 ms
6,528 KB
testcase_43 AC 2 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cmath>
#include<ctime>
#include<iomanip>
#include<numeric>
#include<stack>
#include<queue>
#include<map>
#include<unordered_map>
#include<set>
#include<unordered_set>
#include<bitset>
#include<random>
using namespace std;
int N,ch[1 << 17];
vector<int> G[1 << 17];
long long dp[1 << 17];
void dfs0(int u,int p)
{
	ch[u] = 1;
	for(int v:G[u]) if(v != p)
	{
		dfs0(v,u);
		ch[u] += ch[v];
		dp[u] += dp[v];
	}
	dp[u] += ch[u];
}
void dfs1(int u,int p)
{
	if(p >= 0)
	{
		long long pdp = dp[p];
		pdp -= dp[u]+ch[u];
		dp[u] += pdp+N-ch[u];
	}
	for(int v:G[u]) if(v != p) dfs1(v,u);
}
void solve()
{
	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);
	}
	dfs0(0,-1);
	dfs1(0,-1);
	long long ans = 0;
	for(int i = 0;i < N;i++) ans += dp[i];
	cout << ans << endl;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	//cin >> tt;
	while(tt--) solve();
}
0