結果

問題 No.1098 LCAs
ユーザー nanophoto12nanophoto12
提出日時 2020-06-27 13:45:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 564 ms / 2,000 ms
コード長 1,238 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 206,332 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-07-05 09:05:18
合計ジャッジ時間 10,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 496 ms
23,040 KB
testcase_19 AC 508 ms
23,040 KB
testcase_20 AC 506 ms
23,048 KB
testcase_21 AC 504 ms
23,040 KB
testcase_22 AC 500 ms
23,040 KB
testcase_23 AC 417 ms
22,072 KB
testcase_24 AC 414 ms
22,080 KB
testcase_25 AC 392 ms
21,892 KB
testcase_26 AC 435 ms
21,764 KB
testcase_27 AC 415 ms
21,888 KB
testcase_28 AC 556 ms
39,220 KB
testcase_29 AC 564 ms
40,320 KB
testcase_30 AC 553 ms
39,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define M_PI       3.14159265358979323846   // pi

using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<ll> VI;
typedef pair<ll, ll> P;
typedef tuple<ll, ll, ll> t3;
typedef tuple<ll, ll, ll, ll> t4;
typedef tuple<ll, ll, ll, ll, ll> t5;

#define rep(a,n) for(ll a = 0;a < n;a++)
#define repi(a,b,n) for(ll a = b;a < n;a++)

using namespace std;

static const ll INF = 1e15;

const ll mod = 1000000007;

vector<vector<int>> g;
vector<int> dp;
vector<vector<int>> children;

int dfs(int current, int parent) {
	if (dp[current]) {
		return dp[current];
	}
	int sum = 1;
	for (int i = 0; i < g[current].size(); i++) {
		if (g[current][i] != parent) {
			auto d = dfs(g[current][i], current);
			sum += d;
			children[current].push_back(d);
		}
	}
	dp[current] = sum;
	return sum;
}

int main() {
	int n;
	cin >> n;
	g.resize(n);
	dp.resize(n);
	children.resize(n);
	rep(i, n - 1) {
		int v, w;
		cin >> v >> w;
		v--; w--;
		g[v].push_back(w);
		g[w].push_back(v);
	}
	dfs(0, -1);
	rep(i, n) {
		ll total = 0;
		ll cSum = 0;
		for (auto child : children[i]){
			total += child * cSum * 2;
			cSum  += child;
		}
		total += cSum * 2 + 1;
		cout << total << endl;
	}
	return 0;
}
0