結果

問題 No.872 All Tree Path
ユーザー kenta255kenta255
提出日時 2019-08-30 23:09:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 3,000 ms
コード長 1,852 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 209,368 KB
実行使用メモリ 30,048 KB
最終ジャッジ日時 2024-05-01 20:25:54
合計ジャッジ時間 5,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
25,996 KB
testcase_01 AC 271 ms
25,396 KB
testcase_02 AC 269 ms
25,048 KB
testcase_03 AC 203 ms
30,048 KB
testcase_04 AC 4 ms
10,308 KB
testcase_05 AC 265 ms
24,920 KB
testcase_06 AC 267 ms
26,216 KB
testcase_07 AC 273 ms
25,052 KB
testcase_08 AC 24 ms
11,460 KB
testcase_09 AC 25 ms
11,200 KB
testcase_10 AC 24 ms
12,360 KB
testcase_11 AC 25 ms
12,160 KB
testcase_12 AC 24 ms
11,332 KB
testcase_13 AC 5 ms
10,764 KB
testcase_14 AC 4 ms
9,536 KB
testcase_15 AC 4 ms
9,668 KB
testcase_16 AC 4 ms
10,744 KB
testcase_17 AC 3 ms
10,056 KB
testcase_18 AC 3 ms
9,924 KB
testcase_19 AC 3 ms
9,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define P pair<ll,ll>
#define FOR(I,A,B) for(ll I = ll(A); I < ll(B); ++I)
#define FORR(I,A,B) for(ll I = ll((B)-1); I >= ll(A); --I)
#define TO(x,t,f) ((x)?(t):(f))
#define SORT(x) (sort(x.begin(),x.end())) // 0 2 2 3 4 5 8 9
#define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin()) //xi>=v  x is sorted
#define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin()) //xi>v  x is sorted
#define NUM(x,v) (POSU(x,v)-POSL(x,v))  //x is sorted
#define REV(x) (reverse(x.begin(),x.end())) //reverse
ll gcd(ll a,ll b){if(a%b==0)return b;return gcd(b,a%b);}
ll lcm(ll a,ll b){ll c=gcd(a,b);return ((a/c)*(b/c)*c);}
#define NEXTP(x) next_permutation(x.begin(),x.end())
const ll INF=ll(1e18)+ll(7);
const ll MOD=1000000007LL;
#define out(a) cout<<fixed<<setprecision((a))

vector<ll> tree[200003];
ll ans = 0;
ll N;
ll root = 1;
ll pa[200009]={};
ll numch[200009]={};
bool did[200009];
vector<ll> U,V,W;

void dfs(int i = 1){
	did[i] = true;
	for(auto ch:tree[i]){
		if(did[ch])continue;
		pa[ch] = i;
		dfs(ch);
	}
}

int main(){
	cin >> N;
	FOR(i,0,N-1){
		ll u,v,w;
		cin >> u >> v >> w;
		tree[u].push_back(v);
		tree[v].push_back(u);
		U.push_back(u);
		V.push_back(v);
		W.push_back(w);
	}
	dfs();
	FOR(i,1,N+1) did[i] = false;
	vector<ll> dodo;
	queue<ll> q;
	q.push(1);
	did[1] = true;
	while(q.size()){
		ll ind = q.front();
		q.pop();
		dodo.push_back(ind);
		for(auto nex:tree[ind]){
			if(not did[nex]){
				did[nex] = true;
				q.push(nex);
			}
		}
	}
	reverse(dodo.begin(), dodo.end());
	//cout << dodo.size() << endl;
	ll cnt[N+1] = {};
	FOR(i,0,N+1)cnt[i]=1;
	for(auto x:dodo){
		cnt[pa[x]]+=cnt[x];
	}
	FOR(i,0,N-1){
		ll chai;
		if(pa[U[i]]==V[i]){
			chai = U[i];
		}else{
			chai = V[i];
		}
		ans += W[i] * cnt[chai] * (N-cnt[chai]);
	}
	cout << ans*2 << endl;
}
0