結果
問題 | No.1207 グラフX |
ユーザー | tenten |
提出日時 | 2022-04-08 15:35:53 |
言語 | Java (openjdk 23) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,408 bytes |
コンパイル時間 | 3,271 ms |
コンパイル使用メモリ | 79,276 KB |
実行使用メモリ | 947,280 KB |
最終ジャッジ日時 | 2024-11-28 07:27:36 |
合計ジャッジ時間 | 166,458 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,943 ms
152,780 KB |
testcase_01 | MLE | - |
testcase_02 | TLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | MLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 1,972 ms
172,644 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | AC | 287 ms
51,712 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | MLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | MLE | - |
testcase_32 | TLE | - |
testcase_33 | MLE | - |
testcase_34 | TLE | - |
testcase_35 | AC | 326 ms
394,508 KB |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | AC | 1,453 ms
136,348 KB |
testcase_39 | MLE | - |
testcase_40 | AC | 525 ms
56,884 KB |
testcase_41 | TLE | - |
testcase_42 | AC | 61 ms
36,896 KB |
testcase_43 | AC | 54 ms
37,196 KB |
testcase_44 | AC | 55 ms
36,892 KB |
testcase_45 | AC | 1,462 ms
136,316 KB |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | TLE | - |
ソースコード
import java.io.*; import java.util.*; public class Main { static ArrayList<ArrayList<Path>> graph = new ArrayList<>(); static final int MOD = 1000000007; static int n; static int base; static long ans = 0; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); n = sc.nextInt(); int m = sc.nextInt(); base = 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 a = sc.nextInt() - 1; int b = sc.nextInt() - 1; int c = sc.nextInt(); if (!uft.same(a, b)) { uft.unite(a, b); graph.get(a).add(new Path(b, c)); graph.get(b).add(new Path(a, c)); } } getCount(0, 0); System.out.println(ans); } static int getCount(int idx, int p) { int count = 1; for (Path x : graph.get(idx)) { if (x.idx == p) { continue; } int tmp = getCount(x.idx, idx); ans += (long)tmp * (n - tmp) % MOD * pow(base, x.value) % MOD; ans %= MOD; count += tmp; } return count; } static HashMap<Long, HashMap<Integer, Long>> dp = new HashMap<>(); static long pow(long x, int p) { if (p == 0) { return 1; } if (!dp.containsKey(x)) { dp.put(x, new HashMap<>()); } if (!dp.get(x).containsKey(p)) { if (p % 2 == 0) { dp.get(x).put(p, pow(x * x % MOD, p / 2)); } else { dp.get(x).put(p, pow(x, p - 1) * x % MOD); } } return dp.get(x).get(p); } 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 x) { if (x == parents[x]) { return x; } else { return parents[x] = find(parents[x]); } } public boolean same(int x, int y) { return find(x) == find(y); } public void unite(int x, int y) { parents[find(x)] = find(y); } } static class Path { int idx; int value; public Path(int idx, int value) { this.idx = idx; this.value = value; } } } 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(); } }