結果

問題 No.1207 グラフX
ユーザー tentententen
提出日時 2021-12-01 10:24:11
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,401 bytes
コンパイル時間 3,402 ms
コンパイル使用メモリ 75,048 KB
実行使用メモリ 397,996 KB
最終ジャッジ日時 2023-09-17 14:16:52
合計ジャッジ時間 14,195 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,225 ms
130,240 KB
testcase_01 AC 1,576 ms
140,416 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int n;
    static ArrayList<ArrayList<Path>> graph = new ArrayList<>();
    static int x;
    static long ans = 0;
    static final int MOD = 1000000007;
    static HashMap<Integer, Long> dp = new HashMap<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        n = sc.nextInt();
        int m = sc.nextInt();
        x = sc.nextInt();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        UnionFindTree uft = new UnionFindTree(n);
        for (int i = 0; i < m; i++) {
            int left = sc.nextInt() - 1;
            int right = sc.nextInt() - 1;
            int cost = sc.nextInt();
            if (uft.same(left, right)) {
                continue;
            }
            uft.unite(left, right);
            graph.get(left).add(new Path(right, cost));
            graph.get(right).add(new Path(left, cost));
        }
        getCount(0, 0);
        System.out.println(ans);
    }
    
    static long getCount(int idx, int p) {
        long count = 1;
        for (Path y : graph.get(idx)) {
            if (y.idx == p) {
                continue;
            }
            long tmp = getCount(y.idx, idx);
            ans += (n - tmp) * tmp % MOD * pow(x, y.value) % MOD;
            ans %= MOD;
            count += tmp;
        }
        return count;
    }
    
    static long pow(long x, int p) {
        if (dp.containsKey(p)) {
            return dp.get(p);
        }
        long ans;
        if (p == 0) {
            ans = 1;
        } else if(p % 2 == 0) {
            ans = pow(x, p / 2) * pow(x, p / 2) % MOD;
        } else {
            ans = pow(x, p - 1) * x % MOD;
        }
        dp.put(p, ans);
        return ans;
    }
    
    static class Path {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
    }
    static class UnionFindTree {
        int[] parent;
        
        public UnionFindTree(int size) {
            parent = new int[size];
            for (int i = 0; i < size; i++) {
                parent[i] = i;
            }
        }
        
        public int find(int x) {
            if (parent[x] == x) {
                return x;
            } else {
                return parent[x] = find(parent[x]);
            }
        }
        
        public boolean same(int x, int y) {
            return find(x) == find(y);
        }
        
        public void unite(int x, int y) {
            if (!same(x, y)) {
                parent[find(x)] = find(y);
            }
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0