結果

問題 No.1207 グラフX
ユーザー nebukuro09nebukuro09
提出日時 2020-08-30 13:53:44
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 787 ms / 2,000 ms
コード長 2,881 bytes
コンパイル時間 1,093 ms
コンパイル使用メモリ 141,636 KB
実行使用メモリ 57,324 KB
最終ジャッジ日時 2024-06-22 08:44:27
合計ジャッジ時間 28,560 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 655 ms
27,620 KB
testcase_01 AC 659 ms
26,516 KB
testcase_02 AC 665 ms
30,996 KB
testcase_03 AC 659 ms
28,284 KB
testcase_04 AC 649 ms
28,988 KB
testcase_05 AC 752 ms
55,104 KB
testcase_06 AC 736 ms
54,816 KB
testcase_07 AC 748 ms
55,588 KB
testcase_08 AC 450 ms
21,756 KB
testcase_09 AC 517 ms
24,928 KB
testcase_10 AC 728 ms
42,664 KB
testcase_11 AC 787 ms
57,324 KB
testcase_12 AC 477 ms
23,248 KB
testcase_13 AC 200 ms
8,876 KB
testcase_14 AC 626 ms
25,552 KB
testcase_15 AC 525 ms
22,876 KB
testcase_16 AC 216 ms
10,944 KB
testcase_17 AC 399 ms
17,060 KB
testcase_18 AC 364 ms
17,352 KB
testcase_19 AC 332 ms
14,788 KB
testcase_20 AC 627 ms
26,948 KB
testcase_21 AC 30 ms
6,940 KB
testcase_22 AC 387 ms
17,624 KB
testcase_23 AC 449 ms
20,248 KB
testcase_24 AC 310 ms
17,068 KB
testcase_25 AC 628 ms
30,080 KB
testcase_26 AC 472 ms
23,400 KB
testcase_27 AC 562 ms
26,804 KB
testcase_28 AC 527 ms
25,436 KB
testcase_29 AC 570 ms
24,680 KB
testcase_30 AC 251 ms
15,172 KB
testcase_31 AC 168 ms
7,108 KB
testcase_32 AC 235 ms
14,480 KB
testcase_33 AC 240 ms
12,564 KB
testcase_34 AC 504 ms
24,400 KB
testcase_35 AC 34 ms
6,944 KB
testcase_36 AC 513 ms
24,732 KB
testcase_37 AC 420 ms
18,828 KB
testcase_38 AC 108 ms
6,948 KB
testcase_39 AC 261 ms
13,064 KB
testcase_40 AC 115 ms
7,132 KB
testcase_41 AC 315 ms
16,128 KB
testcase_42 AC 1 ms
6,940 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 1 ms
6,940 KB
testcase_45 AC 626 ms
24,720 KB
testcase_46 AC 624 ms
23,980 KB
testcase_47 AC 687 ms
23,772 KB
testcase_48 AC 689 ms
23,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdlib, std.datetime;

immutable long MOD = 10^^9 + 7;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto M = s[1];
    auto X = s[2].to!long;

    long score(long c) {
        return powmod(X, c, MOD);
    }

    Tuple!(int, int, long)[] E;
    foreach (_; 0..M) {
        s = readln.split.map!(to!int);
        auto a = s[0] - 1;
        auto b = s[1] - 1;
        auto c = s[2].to!long;
        E ~= tuple(a, b, c);
    }
    E.sort!"a[2] < b[2]";

    auto uf = new UnionFind(N);
    auto G = new Tuple!(int, long)[][](N);

    foreach (e; E) {
        auto a = e[0];
        auto b = e[1];
        auto c = e[2];
        if (uf.find(a) == uf.find(b)) continue;
        uf.unite(a, b);
        G[a] ~= tuple(b, c);
        G[b] ~= tuple(a, c);
    }

    auto sub = new int[](N);
    void dfs1(int n, int p) {
        sub[n] = 1;
        foreach (e; G[n]) {
            auto m = e[0];
            if (m != p) {
                dfs1(m, n);
                sub[n] += sub[m];
            }
        }
    }
    dfs1(0, -1);

    auto dp = new long[](N);
    void dfs2(int n, int p) {
        foreach (e; G[n]) {
            auto m = e[0];
            auto c = e[1];
            if (m != p) {
                dfs2(m, n);
                dp[n] += dp[m] + sub[m] * score(c) % MOD;
                dp[n] %= MOD;
            }
        }
    }
    dfs2(0, -1);

    auto ans = new long[](N);
    void dfs3(int n, int p, long cp) {
        if (p == -1) {
            ans[n] = dp[n];
        } else {
            ans[n] = ans[p] - sub[n] * score(cp) % MOD + (N - sub[n]) * score(cp) % MOD;
            ans[n] = (ans[n] % MOD + MOD) % MOD;
        }
        foreach (e; G[n]) {
            auto m = e[0];
            auto c = e[1];
            if (m != p) dfs3(m, n, c);
        }
    }
    dfs3(0, -1, 0);

    long ansans = 0;
    foreach (a; ans) (ansans += a) %= MOD;
    ansans = ansans * powmod(2, MOD-2, MOD) % MOD;

    ansans.writeln;
}

class UnionFind {
    import std.algorithm : swap;

    int n;
    int[] table;

    this(int n) {
        this.n = n;
        table = new int[](n);
        table[] = -1;
    }

    int find(int x) {
        return table[x] < 0 ? x : (table[x] = find(table[x]));
    }

    void unite(int x, int y) {
        x = find(x);
        y = find(y);
        if (x == y) return;
        if (table[x] > table[y]) swap(x, y);
        table[x] += table[y];
        table[y] = x;
    }

    bool same(int x, int y) {
        return find(x) == find(y);
    }
}

long powmod(long a, long x, long m) {
    long ret = 1;
    while (x) {
        if (x % 2) ret = ret * a % m;
        a = a * a % m;
        x /= 2;
    }
    return ret;
}
0