結果

問題 No.1207 グラフX
ユーザー leaf_1415leaf_1415
提出日時 2020-08-30 13:14:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 2,243 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 93,392 KB
実行使用メモリ 36,292 KB
最終ジャッジ日時 2024-11-15 06:30:54
合計ジャッジ時間 11,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
22,476 KB
testcase_01 AC 227 ms
22,600 KB
testcase_02 AC 229 ms
22,600 KB
testcase_03 AC 234 ms
22,604 KB
testcase_04 AC 224 ms
22,604 KB
testcase_05 AC 288 ms
36,172 KB
testcase_06 AC 287 ms
36,292 KB
testcase_07 AC 291 ms
36,292 KB
testcase_08 AC 173 ms
19,276 KB
testcase_09 AC 189 ms
22,084 KB
testcase_10 AC 273 ms
30,664 KB
testcase_11 AC 283 ms
36,168 KB
testcase_12 AC 172 ms
19,016 KB
testcase_13 AC 87 ms
14,920 KB
testcase_14 AC 213 ms
22,604 KB
testcase_15 AC 189 ms
19,916 KB
testcase_16 AC 88 ms
14,920 KB
testcase_17 AC 144 ms
17,604 KB
testcase_18 AC 121 ms
16,708 KB
testcase_19 AC 130 ms
16,608 KB
testcase_20 AC 222 ms
22,600 KB
testcase_21 AC 17 ms
10,312 KB
testcase_22 AC 148 ms
17,612 KB
testcase_23 AC 158 ms
18,380 KB
testcase_24 AC 106 ms
15,688 KB
testcase_25 AC 224 ms
22,468 KB
testcase_26 AC 175 ms
19,272 KB
testcase_27 AC 204 ms
22,212 KB
testcase_28 AC 194 ms
22,348 KB
testcase_29 AC 193 ms
21,572 KB
testcase_30 AC 97 ms
14,536 KB
testcase_31 AC 73 ms
14,920 KB
testcase_32 AC 85 ms
14,152 KB
testcase_33 AC 88 ms
14,284 KB
testcase_34 AC 183 ms
19,656 KB
testcase_35 AC 19 ms
10,204 KB
testcase_36 AC 186 ms
21,572 KB
testcase_37 AC 159 ms
17,996 KB
testcase_38 AC 43 ms
11,332 KB
testcase_39 AC 94 ms
15,432 KB
testcase_40 AC 56 ms
14,920 KB
testcase_41 AC 126 ms
16,456 KB
testcase_42 AC 4 ms
8,576 KB
testcase_43 AC 5 ms
8,704 KB
testcase_44 AC 5 ms
8,576 KB
testcase_45 AC 205 ms
22,604 KB
testcase_46 AC 205 ms
22,728 KB
testcase_47 AC 206 ms
22,600 KB
testcase_48 AC 210 ms
22,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define mod 1000000007

using namespace std;
typedef pair<llint, llint> P;
typedef pair<llint, P> E;

struct UnionFind{
	int size;
	vector<int> parent;
	
	UnionFind(){}
	UnionFind(int size){
		this->size = size;
		parent.resize(size+1);
		init();
	}
	void init(){
		for(int i = 0; i <= size; i++) parent[i] = i;
	}
	int root(int i){
		if(parent[i] == i) return i;
		return parent[i] = root(parent[i]);
	}
	bool same(int i, int j){
		return root(i) == root(j);
	}
	void unite(int i, int j){
		int root_i = root(i), root_j = root(j);
		if(root_i == root_j) return;
		parent[root_i] = root_j;
	}
};

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

llint modpow(llint a, llint n)
{
	if(n == 0) return 1;
	if(n % 2){
		return ((a%mod) * (modpow(a, n-1)%mod)) % mod;
	}
	else{
		return modpow((a*a)%mod, n/2) % mod;
	}
}

llint n, m, x;
vector<edge> G[200005];
vector<E> vec;
UnionFind uf(200005);

llint ans = 0;
llint dfs(int v, int 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 += res * (n-res) % mod * modpow(x, G[v][i].cost) % mod;
		ans %= mod;
		ret += res;
	}
	return ret;
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> m >> x;
	llint u, v, w;
	for(int i = 1; i <= m; i++){
		cin >> u >> v >> w;
		vec.push_back(E(w, P(u, v)));
	}
	sort(vec.begin(), vec.end());
	
	for(int i = 0; i < vec.size(); i++){
		llint w = vec[i].first, u = vec[i].second.first, v = vec[i].second.second;
		if(uf.same(u, v)) continue;
		uf.unite(u, v);
		G[u].push_back(edge(v, w));
		G[v].push_back(edge(u, w));
	}
	
	dfs(1, -1);
	cout << ans << endl;
	
	return 0;
}
0