結果

問題 No.1207 グラフX
ユーザー lloyzlloyz
提出日時 2023-08-11 00:14:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,117 ms / 2,000 ms
コード長 2,608 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 197,100 KB
最終ジャッジ日時 2024-11-17 11:19:01
合計ジャッジ時間 33,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 640 ms
179,700 KB
testcase_01 AC 695 ms
179,408 KB
testcase_02 AC 624 ms
178,628 KB
testcase_03 AC 636 ms
181,248 KB
testcase_04 AC 639 ms
179,640 KB
testcase_05 AC 1,065 ms
161,040 KB
testcase_06 AC 1,088 ms
176,508 KB
testcase_07 AC 1,117 ms
161,924 KB
testcase_08 AC 602 ms
130,412 KB
testcase_09 AC 629 ms
165,932 KB
testcase_10 AC 1,080 ms
166,624 KB
testcase_11 AC 1,105 ms
162,256 KB
testcase_12 AC 611 ms
152,944 KB
testcase_13 AC 384 ms
91,648 KB
testcase_14 AC 639 ms
191,936 KB
testcase_15 AC 663 ms
165,764 KB
testcase_16 AC 444 ms
95,984 KB
testcase_17 AC 599 ms
131,280 KB
testcase_18 AC 412 ms
137,332 KB
testcase_19 AC 488 ms
108,892 KB
testcase_20 AC 733 ms
196,116 KB
testcase_21 AC 127 ms
77,184 KB
testcase_22 AC 503 ms
130,312 KB
testcase_23 AC 527 ms
138,720 KB
testcase_24 AC 375 ms
129,696 KB
testcase_25 AC 658 ms
195,292 KB
testcase_26 AC 570 ms
156,672 KB
testcase_27 AC 638 ms
176,200 KB
testcase_28 AC 623 ms
165,760 KB
testcase_29 AC 614 ms
177,140 KB
testcase_30 AC 401 ms
111,072 KB
testcase_31 AC 345 ms
86,272 KB
testcase_32 AC 348 ms
116,472 KB
testcase_33 AC 371 ms
110,284 KB
testcase_34 AC 630 ms
156,600 KB
testcase_35 AC 173 ms
79,104 KB
testcase_36 AC 606 ms
164,932 KB
testcase_37 AC 544 ms
143,596 KB
testcase_38 AC 258 ms
89,940 KB
testcase_39 AC 388 ms
116,512 KB
testcase_40 AC 262 ms
78,520 KB
testcase_41 AC 479 ms
110,344 KB
testcase_42 AC 47 ms
54,144 KB
testcase_43 AC 45 ms
53,760 KB
testcase_44 AC 45 ms
54,144 KB
testcase_45 AC 661 ms
196,832 KB
testcase_46 AC 566 ms
197,100 KB
testcase_47 AC 584 ms
196,840 KB
testcase_48 AC 592 ms
197,088 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]) * pow(x, z, mod) % mod
        ans %= mod
        Size[cp] += Size[np]
print(ans)
0