結果

問題 No.1207 グラフX
ユーザー lloyzlloyz
提出日時 2023-08-11 00:16:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,172 ms / 2,000 ms
コード長 2,614 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 197,520 KB
最終ジャッジ日時 2024-11-17 11:20:09
合計ジャッジ時間 32,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 667 ms
179,444 KB
testcase_01 AC 674 ms
179,800 KB
testcase_02 AC 663 ms
178,876 KB
testcase_03 AC 673 ms
181,244 KB
testcase_04 AC 673 ms
179,756 KB
testcase_05 AC 1,155 ms
161,044 KB
testcase_06 AC 1,172 ms
176,904 KB
testcase_07 AC 1,146 ms
162,048 KB
testcase_08 AC 688 ms
130,420 KB
testcase_09 AC 718 ms
165,936 KB
testcase_10 AC 1,165 ms
166,872 KB
testcase_11 AC 1,158 ms
162,524 KB
testcase_12 AC 688 ms
153,112 KB
testcase_13 AC 414 ms
92,160 KB
testcase_14 AC 723 ms
191,936 KB
testcase_15 AC 720 ms
165,676 KB
testcase_16 AC 436 ms
96,380 KB
testcase_17 AC 576 ms
131,160 KB
testcase_18 AC 475 ms
137,324 KB
testcase_19 AC 565 ms
109,784 KB
testcase_20 AC 703 ms
196,248 KB
testcase_21 AC 133 ms
76,800 KB
testcase_22 AC 570 ms
130,272 KB
testcase_23 AC 567 ms
138,756 KB
testcase_24 AC 403 ms
130,972 KB
testcase_25 AC 690 ms
195,300 KB
testcase_26 AC 604 ms
157,060 KB
testcase_27 AC 677 ms
176,344 KB
testcase_28 AC 694 ms
165,880 KB
testcase_29 AC 639 ms
177,148 KB
testcase_30 AC 436 ms
111,076 KB
testcase_31 AC 350 ms
86,500 KB
testcase_32 AC 373 ms
116,072 KB
testcase_33 AC 409 ms
110,392 KB
testcase_34 AC 666 ms
156,468 KB
testcase_35 AC 176 ms
78,848 KB
testcase_36 AC 639 ms
165,060 KB
testcase_37 AC 609 ms
143,868 KB
testcase_38 AC 270 ms
89,668 KB
testcase_39 AC 410 ms
116,512 KB
testcase_40 AC 263 ms
78,644 KB
testcase_41 AC 543 ms
109,700 KB
testcase_42 AC 43 ms
54,144 KB
testcase_43 AC 43 ms
53,888 KB
testcase_44 AC 42 ms
54,016 KB
testcase_45 AC 618 ms
197,072 KB
testcase_46 AC 614 ms
197,100 KB
testcase_47 AC 627 ms
196,956 KB
testcase_48 AC 616 ms
197,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class UnionFind():
    def __init__(self, n):
        '''
        UnionFindクラス。nは要素数を表す。
        '''
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        '''
        要素xを含む集合の親を見つける関数。
        '''
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        '''
        要素xを含む集合と要素yを含む集合を合体する関数。
        基本的には、要素数が多い集合に統合される。
        要素数が同じときは要素yを含む集合に統合される。
        '''
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        '''
        要素xを含む集合の要素数を出す関数。
        '''
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

n, m, x = map(int, input().split())
mod = 10**9 + 7
UF = UnionFind(n)
G = defaultdict(list)
for _ in range(m):
    u, v, z = map(int, input().split())
    u -= 1
    v -= 1
    if UF.same(u, v):
        continue
    UF.union(u, v)
    G[u].append((v, z))
    G[v].append((u, z))

Parents = [-1 for _ in range(n)]
visited = set([0])
Stack = [0]
Topo = []
while Stack:
    cp = Stack.pop()
    Topo.append(cp)
    for np, _ in G[cp]:
        if np in visited:
            continue
        visited.add(np)
        Parents[np] = cp
        Stack.append(np)

ans = 0
Size = [1 for _ in range(n)]
for cp in Topo[::-1]:
    for np, z in G[cp]:
        if np == Parents[cp]:
            continue
        ans += Size[np] * (n - Size[np]) % mod * pow(x, z, mod) % mod
        ans %= mod
        Size[cp] += Size[np]
print(ans)
0