結果

問題 No.1843 Tree ANDistance
ユーザー 👑 rin204rin204
提出日時 2022-05-04 18:33:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 1,625 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 210,876 KB
最終ジャッジ日時 2024-07-03 21:35:07
合計ジャッジ時間 11,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 455 ms
119,356 KB
testcase_01 AC 454 ms
118,256 KB
testcase_02 AC 416 ms
121,064 KB
testcase_03 AC 411 ms
120,716 KB
testcase_04 AC 450 ms
119,068 KB
testcase_05 AC 367 ms
120,508 KB
testcase_06 AC 403 ms
119,412 KB
testcase_07 AC 440 ms
117,016 KB
testcase_08 AC 430 ms
118,036 KB
testcase_09 AC 421 ms
119,476 KB
testcase_10 AC 409 ms
119,000 KB
testcase_11 AC 485 ms
119,420 KB
testcase_12 AC 347 ms
119,672 KB
testcase_13 AC 406 ms
120,948 KB
testcase_14 AC 139 ms
77,596 KB
testcase_15 AC 134 ms
77,604 KB
testcase_16 AC 102 ms
76,748 KB
testcase_17 AC 102 ms
77,316 KB
testcase_18 AC 85 ms
76,664 KB
testcase_19 AC 101 ms
77,004 KB
testcase_20 AC 99 ms
77,016 KB
testcase_21 AC 37 ms
53,096 KB
testcase_22 AC 38 ms
53,840 KB
testcase_23 AC 38 ms
52,600 KB
testcase_24 AC 39 ms
53,736 KB
testcase_25 AC 38 ms
53,316 KB
testcase_26 AC 38 ms
53,716 KB
testcase_27 AC 38 ms
53,504 KB
testcase_28 AC 355 ms
125,152 KB
testcase_29 AC 283 ms
113,480 KB
testcase_30 AC 282 ms
113,208 KB
testcase_31 AC 389 ms
210,876 KB
testcase_32 AC 381 ms
193,620 KB
testcase_33 AC 142 ms
93,268 KB
testcase_34 AC 292 ms
118,228 KB
testcase_35 AC 39 ms
53,632 KB
testcase_36 AC 39 ms
54,032 KB
testcase_37 AC 41 ms
52,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
        self.group = 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
        self.group -= 1
        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 self.group

    def all_group_members(self):
        dic = {r:[] for r in self.roots()}
        for i in range(self.n):
            dic[self.find(i)].append(i)
        return dic

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


n = int(input())
abc = [list(map(int, input().split())) for _ in range(n - 1)]
ans = 0
bi = 1
for i in range(30):
    UF = UnionFind(n)
    for a, b, c in abc:
        if c >> i & 1:
            UF.union(a - 1, b - 1)
    for r in UF.roots():
        r = UF.size(r)
        ans += r * (r - 1) // 2 * bi
        ans %= MOD
    bi *= 2
print(ans)
0