結果

問題 No.872 All Tree Path
ユーザー QCFiumQCFium
提出日時 2019-08-30 21:51:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 3,000 ms
コード長 850 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 175,188 KB
実行使用メモリ 28,404 KB
最終ジャッジ日時 2024-05-01 17:21:04
合計ジャッジ時間 4,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
17,024 KB
testcase_01 AC 193 ms
16,896 KB
testcase_02 AC 189 ms
16,896 KB
testcase_03 AC 104 ms
28,404 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 210 ms
16,736 KB
testcase_06 AC 205 ms
17,020 KB
testcase_07 AC 204 ms
16,872 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 13 ms
5,376 KB
testcase_12 AC 14 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	assert(scanf("%d", &n) == 1);
	return n;
}
int n;
std::vector<std::vector<std::pair<int, int> > > hen;
std::vector<int> size;
std::vector<int> parent;

int dfs(int i, int par) {
	parent[i] = par;
	int cur = 1;
	for (auto &j : hen[i]) {
		if (j.first == par) continue;
		cur += dfs(j.first, i);
	}
	return size[i] = cur;
}

int main () {
	n = ri();
	hen.resize(n);
	for (int i = 0; i + 1 < n; i++) {
		int a = ri() - 1;
		int b = ri() - 1;
		int c = ri();
		hen[a].push_back({b, c});
		hen[b].push_back({a, c});
	}
	size.resize(n);
	parent.resize(n);
	dfs(0, -1);
	int64_t res = 0;
	for (int i = 0; i < n; i++) {
		for (auto &j : hen[i]) {
			if (parent[j.first] == i) {
				res += j.second * (int64_t) size[j.first] * (n - size[j.first]);
			}
		}
	}
	std::cout << res * 2 << std::endl;
	
	
	return 0;
}
0