結果

問題 No.872 All Tree Path
ユーザー ningenMeningenMe
提出日時 2019-08-30 00:03:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,793 bytes
コンパイル時間 1,454 ms
コンパイル使用メモリ 181,080 KB
実行使用メモリ 13,744 KB
最終ジャッジ日時 2024-11-17 17:36:04
合計ジャッジ時間 4,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long N; 
vector<vector<pair<int,long long>>> edge;
vector<long long> dist,sum,scale;
int idx = 0;

void dfs1(int from, int prev = -1){
	for(int i = 0; i < edge[from].size(); ++i){
		int to = edge[from][i].first;
		if(to==prev) continue;
		dist[to] = dist[from] + edge[from][i].second;
		dfs1(to,from);
		scale[from] += scale[to];
	}
}

void dfs2(int from, int prev = -1){
	for(int i = 0; i < edge[from].size(); ++i){
		int to = edge[from][i].first;
		if(to==prev) continue;
		sum[to] = sum[from] + (N - 2*scale[to])*edge[from][i].second;
		dfs2(to,from);
	}
}


//Union Find Tree
class Union_Find_Tree_Size {
public:
	vector<int> parent;

    Union_Find_Tree_Size(int N = 1) : parent(N,-1){
	}
 
	int root(int n) {
        return (parent[n]<0?n:parent[n] = root(parent[n]));
	}

    bool same(int n, int m) {
		return root(n) == root(m);
	}
 
	void unite(int n, int m) {
		n = root(n);
		m = root(m);
		if (n == m) return;
		if(parent[n]>parent[m]) swap(n, m);
        parent[n] += parent[m];
        parent[m] = n;
	}

    int size(int n){
        return (-parent[root(n)]);
    }
};

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	cin >> N;
	assert(2<=N && N <= 200000);
	edge.resize(N);
	dist.resize(N);
	sum.resize(N);
	scale.resize(N,1);
	Union_Find_Tree_Size uf(N);

	for(int i = 0; i < N-1; ++i){
		int u,v;
		long long w;
		assert(1<= u && u <= N);
		assert(1<= v && v <= N);
		assert(1<= w && w <= 100);
		cin >> u >> v >> w;
		u--,v--;
		edge[u].push_back({v,w});
		edge[v].push_back({u,w});
		uf.unite(u,v);
	}
	for(int i = 0; i < N; ++i) assert(uf.size(i)==N);

	dist[0] = 0;
	dfs1(0);
	sum[0] = accumulate(dist.begin(),dist.end(),0LL);
	dfs2(0);
	cout << accumulate(sum.begin(),sum.end(),0LL) << endl;
    return 0;
}
0