結果

問題 No.872 All Tree Path
ユーザー 沙耶花沙耶花
提出日時 2019-08-30 21:55:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,161 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 186,628 KB
実行使用メモリ 41,056 KB
最終ジャッジ日時 2024-11-21 23:05:14
合計ジャッジ時間 10,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 680 ms
40,960 KB
testcase_01 AC 682 ms
41,016 KB
testcase_02 AC 676 ms
41,056 KB
testcase_03 AC 567 ms
39,908 KB
testcase_04 RE -
testcase_05 AC 696 ms
40,988 KB
testcase_06 AC 663 ms
41,032 KB
testcase_07 AC 696 ms
40,960 KB
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;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000000


int main(){
	
	int N;
	
	cin>>N;
	
	vector<vector<pair<int,int>>> E(N,vector<pair<int,int>>());
	
	vector<int> jisuu(N,0);
	
	for(int i=0;i<N-1;i++){
		int a,b,w;
		cin>>a>>b>>w;
		a--;b--;
		
		E[a].emplace_back(b,w);
		E[b].emplace_back(a,w);
		
		jisuu[a]++;
		jisuu[b]++;
		
	}
	
	queue<int> Q;
	for(int i=0;i<N;i++){
		if(jisuu[i]==1)Q.push(i);
	}
	
	map<pair<int,int>,int> M;
	
	while(Q.size()!=0){
		int now = Q.front();
		Q.pop();
		
		int cnt = 1;
		int ind = -1;
		for(int i=0;i<E[now].size();i++){
			if(M[make_pair(now,E[now][i].first)]==0){
				ind = E[now][i].first;
			}
			else{
				cnt+=M[make_pair(now,E[now][i].first)];
			}
		}
		
		M[make_pair(now,ind)]=cnt;
		M[make_pair(ind,now)]=cnt;
		jisuu[ind]--;
		if(jisuu[ind]==1){
			Q.push(ind);
		}
	}
		
	long long ans = 0;
	
	for(int i=0;i<N;i++){
		for(int j=0;j<E[i].size();j++){
			long long a = M[make_pair(i,E[i][j].first)];
			long long x = a*(N-a);
			x *= E[i][j].second;
			ans += x;
		}
	}
	
	cout<<ans<<endl;	
	
	return 0;
}
0