結果

問題 No.1207 グラフX
ユーザー ks2mks2m
提出日時 2020-08-30 14:01:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,581 ms / 2,000 ms
コード長 2,424 bytes
コンパイル時間 3,909 ms
コンパイル使用メモリ 78,188 KB
実行使用メモリ 113,532 KB
最終ジャッジ日時 2024-11-15 07:14:39
合計ジャッジ時間 53,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,050 ms
87,080 KB
testcase_01 AC 1,408 ms
93,100 KB
testcase_02 AC 1,493 ms
95,724 KB
testcase_03 AC 1,054 ms
86,952 KB
testcase_04 AC 1,454 ms
93,204 KB
testcase_05 AC 1,545 ms
104,908 KB
testcase_06 AC 1,434 ms
111,708 KB
testcase_07 AC 1,581 ms
113,532 KB
testcase_08 AC 1,036 ms
69,396 KB
testcase_09 AC 1,126 ms
78,408 KB
testcase_10 AC 1,477 ms
105,348 KB
testcase_11 AC 1,359 ms
100,780 KB
testcase_12 AC 922 ms
74,232 KB
testcase_13 AC 547 ms
51,688 KB
testcase_14 AC 1,154 ms
86,032 KB
testcase_15 AC 957 ms
76,880 KB
testcase_16 AC 557 ms
52,540 KB
testcase_17 AC 824 ms
68,408 KB
testcase_18 AC 846 ms
67,652 KB
testcase_19 AC 777 ms
61,432 KB
testcase_20 AC 1,038 ms
86,260 KB
testcase_21 AC 215 ms
44,328 KB
testcase_22 AC 823 ms
66,968 KB
testcase_23 AC 988 ms
69,948 KB
testcase_24 AC 674 ms
65,004 KB
testcase_25 AC 1,332 ms
92,276 KB
testcase_26 AC 967 ms
74,556 KB
testcase_27 AC 1,264 ms
89,336 KB
testcase_28 AC 1,053 ms
78,516 KB
testcase_29 AC 1,013 ms
83,988 KB
testcase_30 AC 628 ms
57,388 KB
testcase_31 AC 517 ms
49,896 KB
testcase_32 AC 577 ms
58,820 KB
testcase_33 AC 590 ms
58,872 KB
testcase_34 AC 998 ms
74,752 KB
testcase_35 AC 227 ms
44,788 KB
testcase_36 AC 1,035 ms
74,956 KB
testcase_37 AC 894 ms
68,948 KB
testcase_38 AC 355 ms
50,064 KB
testcase_39 AC 616 ms
59,972 KB
testcase_40 AC 438 ms
47,100 KB
testcase_41 AC 768 ms
62,068 KB
testcase_42 AC 50 ms
36,704 KB
testcase_43 AC 51 ms
36,700 KB
testcase_44 AC 52 ms
36,920 KB
testcase_45 AC 1,032 ms
86,704 KB
testcase_46 AC 1,024 ms
86,076 KB
testcase_47 AC 1,392 ms
94,812 KB
testcase_48 AC 1,026 ms
86,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

public class Main {
	static List<List<Hen>> list;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		int x = Integer.parseInt(sa[2]);
		list = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		UnionFind uf = new UnionFind(n);
		List<Hen> hens = new ArrayList<>();
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			Hen h = new Hen();
			h.x = Integer.parseInt(sa[0]) - 1;
			h.y = Integer.parseInt(sa[1]) - 1;
			h.z = Integer.parseInt(sa[2]);
			if (!uf.same(h.x, h.y)) {
				uf.union(h.x, h.y);
				list.get(h.x).add(h);
				list.get(h.y).add(h);
				hens.add(h);
			}
		}
		br.close();

		dfs(0, -1);
		int mod = 1000000007;
		long ans = 0;
		for (Hen h : hens) {
			long cnt = (long) h.c * (n - h.c) % mod;
			ans += power(x, h.z, mod) * cnt;
			ans %= mod;
		}
		System.out.println(ans);
	}

	static int dfs(int cur, int p) {
		int ret = 1;
		List<Hen> nexts = list.get(cur);
		for (Hen h : nexts) {
			int next = h.x;
			if (next == cur) {
				next = h.y;
			}
			if (next == p) {
				continue;
			}
			h.c = dfs(next, cur);
			ret += h.c;
		}
		return ret;
	}

	static class Hen {
		int x, y, z, c;
	}

	static long power(long x, long n, int m) {
		if (n == 0) {
			return 1;
		}
		long val = power(x, n / 2, m);
		val = val * val % m;
		if (n % 2 == 1) {
			val = val * x % m;
		}
		return val;
	}

	static class UnionFind {
		int[] parent, size;
		int num = 0; // 連結成分の数

		UnionFind(int n) {
			parent = new int[n];
			size = new int[n];
			num = n;
			for (int i = 0; i < n; i++) {
				parent[i] = i;
				size[i] = 1;
			}
		}

		void union(int x, int y) {
			int px = find(x);
			int py = find(y);
			if (px != py) {
				parent[px] = py;
				size[py] += size[px];
				num--;
			}
		}

		int find(int x) {
			if (parent[x] == x) {
				return x;
			}
			parent[x] = find(parent[x]);
			return parent[x];
		}

		/**
		 * xとyが同一連結成分か
		 */
		boolean same(int x, int y) {
			return find(x) == find(y);
		}

		/**
		 * xを含む連結成分のサイズ
		 */
		int size(int x) {
			return size[find(x)];
		}
	}
}
0