結果

問題 No.1098 LCAs
ユーザー snrnsidysnrnsidy
提出日時 2021-05-13 04:00:53
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 826 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 203,760 KB
実行使用メモリ 29,124 KB
最終ジャッジ日時 2024-09-24 17:06:59
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,536 KB
testcase_01 AC 4 ms
9,540 KB
testcase_02 AC 4 ms
9,668 KB
testcase_03 AC 4 ms
8,160 KB
testcase_04 AC 4 ms
8,220 KB
testcase_05 AC 4 ms
8,192 KB
testcase_06 AC 3 ms
9,668 KB
testcase_07 AC 4 ms
9,540 KB
testcase_08 AC 4 ms
9,792 KB
testcase_09 AC 4 ms
9,536 KB
testcase_10 AC 3 ms
8,236 KB
testcase_11 AC 3 ms
9,540 KB
testcase_12 AC 4 ms
7,996 KB
testcase_13 AC 4 ms
9,664 KB
testcase_14 AC 4 ms
9,608 KB
testcase_15 AC 5 ms
9,624 KB
testcase_16 AC 4 ms
8,108 KB
testcase_17 AC 4 ms
9,672 KB
testcase_18 AC 155 ms
17,736 KB
testcase_19 AC 143 ms
17,732 KB
testcase_20 AC 145 ms
17,604 KB
testcase_21 AC 132 ms
17,732 KB
testcase_22 AC 144 ms
17,728 KB
testcase_23 AC 91 ms
17,948 KB
testcase_24 AC 92 ms
17,812 KB
testcase_25 AC 86 ms
18,108 KB
testcase_26 AC 101 ms
18,020 KB
testcase_27 AC 95 ms
17,896 KB
testcase_28 AC 201 ms
28,104 KB
testcase_29 AC 204 ms
29,124 KB
testcase_30 AC 194 ms
27,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

long long int dp[200005];
vector <int> adj[200005];
long long int cnt[200005];

long long int func(int now, int prev)
{
	cnt[now] = 1;
	for (auto next : adj[now])
	{
		if (next == prev) continue;
		cnt[now] += func(next, now);
	}
	return cnt[now];
}

void solve(int now, int prev)
{
	//cout << now << ' ' << cnt[now] << '\n';
	dp[now] = cnt[now] * cnt[now];
	for (auto next : adj[now])
	{
		if (next == prev) continue;
		solve(next, now);
		dp[now] -= (cnt[next] * cnt[next]);
	}
}

int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int n, a, b;

	cin >> n;

	for (int i = 0; i < n - 1; i++)
	{
		cin >> a >> b;
		adj[a].push_back(b);
		adj[b].push_back(a);
	}
	
	func(1, 0);
	solve(1, 0);

	for (int i = 1; i <= n; i++)
	{
		cout << dp[i] << '\n';
	}

	return 0;
}
0