結果

問題 No.872 All Tree Path
ユーザー leaf_1415leaf_1415
提出日時 2019-08-30 21:45:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 124 ms / 3,000 ms
コード長 759 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 64,856 KB
実行使用メモリ 29,876 KB
最終ジャッジ日時 2024-11-21 22:29:52
合計ジャッジ時間 2,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
18,240 KB
testcase_01 AC 118 ms
18,188 KB
testcase_02 AC 124 ms
18,208 KB
testcase_03 AC 88 ms
29,876 KB
testcase_04 AC 4 ms
8,080 KB
testcase_05 AC 118 ms
18,180 KB
testcase_06 AC 117 ms
18,136 KB
testcase_07 AC 114 ms
18,280 KB
testcase_08 AC 12 ms
9,160 KB
testcase_09 AC 13 ms
9,092 KB
testcase_10 AC 13 ms
9,036 KB
testcase_11 AC 12 ms
9,032 KB
testcase_12 AC 12 ms
9,012 KB
testcase_13 AC 4 ms
8,016 KB
testcase_14 AC 3 ms
8,024 KB
testcase_15 AC 4 ms
8,064 KB
testcase_16 AC 3 ms
8,048 KB
testcase_17 AC 3 ms
7,952 KB
testcase_18 AC 4 ms
8,192 KB
testcase_19 AC 4 ms
8,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <algorithm>
#include <queue>
#include <vector>
#define llint long long

using namespace std;

struct edge{
	llint to, cost;
	edge();
	edge(llint a, llint b){
		to = a, cost = b;
	}
};

llint n;
vector<edge> G[200005];

llint ans = 0;
llint dfs(llint v, llint p)
{
	llint ret = 1;
	for(int i = 0; i < G[v].size(); i++){
		if(G[v][i].to == p) continue;
		llint res = dfs(G[v][i].to, v);
		ans += G[v][i].cost * res * (n-res);
		ret += res;
	}
	return ret;
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	llint u, v, w;
	for(int i = 0; i < n-1; i++){
		cin >> u >> v >> w;
		G[u].push_back(edge(v, w));
		G[v].push_back(edge(u, w));
	}
	
	dfs(1, -1);
	cout << ans*2 << endl;
	
	return 0;
}
0