結果

問題 No.1843 Tree ANDistance
ユーザー H20H20
提出日時 2022-02-18 21:51:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 980 ms / 2,000 ms
コード長 1,721 bytes
コンパイル時間 658 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 308,520 KB
最終ジャッジ日時 2024-06-29 08:45:13
合計ジャッジ時間 20,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 915 ms
260,644 KB
testcase_01 AC 934 ms
271,008 KB
testcase_02 AC 859 ms
258,056 KB
testcase_03 AC 857 ms
259,492 KB
testcase_04 AC 930 ms
257,532 KB
testcase_05 AC 713 ms
275,432 KB
testcase_06 AC 776 ms
281,808 KB
testcase_07 AC 851 ms
244,948 KB
testcase_08 AC 895 ms
267,124 KB
testcase_09 AC 868 ms
241,548 KB
testcase_10 AC 824 ms
242,764 KB
testcase_11 AC 980 ms
264,472 KB
testcase_12 AC 650 ms
260,204 KB
testcase_13 AC 729 ms
286,548 KB
testcase_14 AC 143 ms
78,268 KB
testcase_15 AC 139 ms
78,408 KB
testcase_16 AC 111 ms
78,080 KB
testcase_17 AC 110 ms
77,696 KB
testcase_18 AC 91 ms
77,056 KB
testcase_19 AC 118 ms
78,208 KB
testcase_20 AC 112 ms
78,208 KB
testcase_21 AC 39 ms
54,144 KB
testcase_22 AC 37 ms
54,656 KB
testcase_23 AC 38 ms
54,272 KB
testcase_24 AC 36 ms
54,272 KB
testcase_25 AC 35 ms
54,272 KB
testcase_26 AC 35 ms
54,144 KB
testcase_27 AC 35 ms
54,272 KB
testcase_28 AC 768 ms
308,520 KB
testcase_29 AC 519 ms
219,764 KB
testcase_30 AC 531 ms
233,512 KB
testcase_31 AC 802 ms
304,944 KB
testcase_32 AC 774 ms
301,676 KB
testcase_33 AC 228 ms
131,620 KB
testcase_34 AC 564 ms
264,572 KB
testcase_35 AC 40 ms
53,760 KB
testcase_36 AC 36 ms
54,144 KB
testcase_37 AC 37 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UnionFind 参考は以下のサイト
# https://note.nkmk.me/python-union-find/
from collections import defaultdict

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    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) 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 = int(input())
ABC = [list(map(int, input().split())) for _ in range(N-1)]
mod = 10**9+7
ans = 0
i = 1
while i<2**32:
    uf = UnionFind(N)
    for a,b,c in ABC:
        if c&i>0:
            uf.union(a-1,b-1)
    GM = uf.all_group_members()
    for k,L in GM.items():
        l = len(L)
        ans = (ans+(l-1)*l//2*i)%mod
    i*=2
print(ans)
0