結果

問題 No.1207 グラフX
ユーザー WSKRWSKR
提出日時 2020-09-22 22:27:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,905 ms / 2,000 ms
コード長 2,462 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 414,928 KB
最終ジャッジ日時 2024-06-26 22:13:06
合計ジャッジ時間 34,507 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 667 ms
143,272 KB
testcase_01 AC 645 ms
143,792 KB
testcase_02 AC 655 ms
143,216 KB
testcase_03 AC 649 ms
142,932 KB
testcase_04 AC 662 ms
142,960 KB
testcase_05 AC 1,633 ms
414,928 KB
testcase_06 AC 1,542 ms
405,152 KB
testcase_07 AC 1,616 ms
412,676 KB
testcase_08 AC 630 ms
117,592 KB
testcase_09 AC 642 ms
128,648 KB
testcase_10 AC 1,905 ms
390,312 KB
testcase_11 AC 1,611 ms
409,624 KB
testcase_12 AC 623 ms
121,404 KB
testcase_13 AC 396 ms
87,388 KB
testcase_14 AC 713 ms
143,060 KB
testcase_15 AC 705 ms
127,664 KB
testcase_16 AC 417 ms
90,924 KB
testcase_17 AC 545 ms
113,212 KB
testcase_18 AC 433 ms
112,412 KB
testcase_19 AC 517 ms
99,380 KB
testcase_20 AC 685 ms
142,812 KB
testcase_21 AC 136 ms
77,072 KB
testcase_22 AC 524 ms
114,008 KB
testcase_23 AC 573 ms
121,396 KB
testcase_24 AC 407 ms
109,156 KB
testcase_25 AC 684 ms
144,156 KB
testcase_26 AC 569 ms
124,624 KB
testcase_27 AC 648 ms
135,232 KB
testcase_28 AC 676 ms
128,684 KB
testcase_29 AC 618 ms
133,720 KB
testcase_30 AC 415 ms
99,264 KB
testcase_31 AC 368 ms
84,608 KB
testcase_32 AC 371 ms
100,776 KB
testcase_33 AC 385 ms
99,416 KB
testcase_34 AC 637 ms
125,568 KB
testcase_35 AC 168 ms
78,164 KB
testcase_36 AC 624 ms
127,892 KB
testcase_37 AC 577 ms
117,612 KB
testcase_38 AC 267 ms
85,848 KB
testcase_39 AC 386 ms
101,872 KB
testcase_40 AC 269 ms
79,536 KB
testcase_41 AC 497 ms
100,160 KB
testcase_42 AC 38 ms
53,484 KB
testcase_43 AC 39 ms
53,588 KB
testcase_44 AC 39 ms
53,080 KB
testcase_45 AC 656 ms
143,364 KB
testcase_46 AC 653 ms
143,924 KB
testcase_47 AC 614 ms
143,532 KB
testcase_48 AC 628 ms
143,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * (n+1)

    def find(self, 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 = 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):
        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 + 1) 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):
        return {r: self.members(r) for r in self.roots()}

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())


mod = 10 ** 9 + 7


def main():
    N, M, X = map(int, input().split())
    weight_cost = [0 for i in range(N+1)]
    Uni = UnionFind(N)
    res = 0
    que = []
    G = [[] for i in range(N+1)]
    for i in range(M):
        x, y, z = map(int, input().split())
        if Uni.same(x, y) == True:
            continue
        else:
            Uni.union(x, y)
            G[x].append(y)
            G[y].append(x)
            que.append((x, y, z))

    #ここで得られる構造は木構造
    visited = [False for i in range(N+1)]
    depth = [0 for i in range(N+1)]
    child_cnt = [1 for i in range(N+1)]

    def dfs(s_node):
        visited[s_node] = True
        for node in G[s_node]:
            if visited[node] == False:
                depth[node] = depth[s_node] + 1
                dfs(node)
        for node in G[s_node]:
            if depth[node] > depth[s_node]:
                child_cnt[s_node] += child_cnt[node]

    dfs(1)
    for x, y, z in que:
        if depth[x] > depth[y]:
            res += pow(X, z, mod) * child_cnt[x]*(N-child_cnt[x])
            res %= mod
        else:
            res += pow(X, z, mod) * child_cnt[y]*(N-child_cnt[y])
            res %= mod
    print(res)
    return


if __name__ == "__main__":
    main()



0