結果

問題 No.1207 グラフX
ユーザー tentententen
提出日時 2020-12-04 09:25:15
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,556 bytes
コンパイル時間 2,611 ms
コンパイル使用メモリ 83,584 KB
実行使用メモリ 150,296 KB
最終ジャッジ日時 2024-09-14 19:52:34
合計ジャッジ時間 69,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,480 ms
135,472 KB
testcase_01 AC 1,549 ms
122,056 KB
testcase_02 AC 1,387 ms
122,056 KB
testcase_03 AC 1,393 ms
122,772 KB
testcase_04 AC 1,479 ms
135,540 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,327 ms
101,132 KB
testcase_09 AC 1,375 ms
108,772 KB
testcase_10 AC 1,587 ms
140,404 KB
testcase_11 TLE -
testcase_12 AC 1,372 ms
107,836 KB
testcase_13 AC 772 ms
62,712 KB
testcase_14 AC 1,552 ms
127,772 KB
testcase_15 AC 1,346 ms
113,560 KB
testcase_16 AC 850 ms
72,016 KB
testcase_17 AC 1,193 ms
89,696 KB
testcase_18 AC 1,169 ms
90,128 KB
testcase_19 AC 1,019 ms
79,348 KB
testcase_20 AC 1,399 ms
122,484 KB
testcase_21 AC 286 ms
46,412 KB
testcase_22 AC 1,315 ms
90,456 KB
testcase_23 AC 1,230 ms
103,564 KB
testcase_24 AC 1,131 ms
94,452 KB
testcase_25 AC 1,570 ms
129,112 KB
testcase_26 AC 1,296 ms
106,720 KB
testcase_27 AC 1,407 ms
113,916 KB
testcase_28 AC 1,287 ms
110,448 KB
testcase_29 AC 1,327 ms
114,464 KB
testcase_30 AC 854 ms
75,432 KB
testcase_31 AC 608 ms
53,700 KB
testcase_32 AC 833 ms
73,892 KB
testcase_33 AC 875 ms
78,176 KB
testcase_34 AC 1,289 ms
104,256 KB
testcase_35 AC 296 ms
47,548 KB
testcase_36 AC 1,301 ms
109,696 KB
testcase_37 AC 1,242 ms
92,340 KB
testcase_38 AC 469 ms
55,548 KB
testcase_39 AC 810 ms
79,796 KB
testcase_40 AC 493 ms
49,128 KB
testcase_41 AC 995 ms
80,080 KB
testcase_42 AC 125 ms
40,980 KB
testcase_43 AC 113 ms
40,280 KB
testcase_44 AC 126 ms
40,916 KB
testcase_45 AC 1,361 ms
128,356 KB
testcase_46 AC 1,405 ms
129,548 KB
testcase_47 AC 1,377 ms
129,480 KB
testcase_48 AC 1,380 ms
129,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static final int MOD = 1000000007;
    static ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
    static int n;
    static int x;
    static long sum = 0;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 3);
        n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        x = Integer.parseInt(first[2]);
        for (int i = 0; i < n; i++) {
            graph.add(new HashMap<>());
        }
        UnionFindTree uft = new UnionFindTree(n);
        for (int i = 0; i < m; i++) {
            String[] line = br.readLine().split(" ", 3);
            int a = Integer.parseInt(line[0]) - 1;
            int b = Integer.parseInt(line[1]) - 1;
            int c = Integer.parseInt(line[2]);
            if (!uft.same(a, b)) {
                uft.unite(a, b);
                graph.get(a).put(b, c);
                graph.get(b).put(a, c);
            }
        }
        getSize(0, 0);
        System.out.println(sum);
    }
    
    static int getSize(int idx, int parent) {
        int size = 1;
        for (int y : graph.get(idx).keySet()) {
            if (y == parent) {
                continue;
            }
            int s = getSize(y, idx);
            sum += pow(x, graph.get(idx).get(y)) * (n - s) % MOD * s % MOD;
            sum %= MOD;
            size += s;
        }
        return size;
    }
    
    static long pow(long x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return x * pow(x, p - 1) % MOD;
        }
    }
    
    static class UnionFindTree {
        int[] parents;
        
        public UnionFindTree(int size) {
            parents = new int[size];
            for (int i = 0; i < size; i++) {
                parents[i] = i;
            }
        }
        
        public int find(int a) {
            if (parents[a] == a) {
                return a;
            } else {
                return parents[a] = find(parents[a]);
            }
        }
        
        public boolean same(int a, int b) {
            return find(a) == find(b);
        }
        
        public void unite(int a, int b) {
            if (!same(a, b)) {
                parents[find(a)] = find(b);
            }
        }
    }
}
0