結果

問題 No.1843 Tree ANDistance
ユーザー H3PO4H3PO4
提出日時 2022-02-18 21:40:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 615 ms / 2,000 ms
コード長 1,708 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 227,800 KB
最終ジャッジ日時 2024-06-29 08:32:00
合計ジャッジ時間 13,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 592 ms
169,856 KB
testcase_01 AC 615 ms
180,452 KB
testcase_02 AC 535 ms
182,300 KB
testcase_03 AC 535 ms
182,488 KB
testcase_04 AC 594 ms
169,056 KB
testcase_05 AC 445 ms
169,752 KB
testcase_06 AC 533 ms
174,900 KB
testcase_07 AC 583 ms
181,864 KB
testcase_08 AC 585 ms
168,252 KB
testcase_09 AC 508 ms
183,772 KB
testcase_10 AC 505 ms
182,576 KB
testcase_11 AC 606 ms
163,320 KB
testcase_12 AC 435 ms
187,000 KB
testcase_13 AC 487 ms
176,996 KB
testcase_14 AC 143 ms
78,052 KB
testcase_15 AC 149 ms
77,536 KB
testcase_16 AC 113 ms
76,672 KB
testcase_17 AC 110 ms
76,416 KB
testcase_18 AC 97 ms
76,288 KB
testcase_19 AC 101 ms
77,696 KB
testcase_20 AC 105 ms
76,672 KB
testcase_21 AC 41 ms
52,608 KB
testcase_22 AC 42 ms
52,352 KB
testcase_23 AC 42 ms
52,224 KB
testcase_24 AC 42 ms
52,480 KB
testcase_25 AC 42 ms
52,224 KB
testcase_26 AC 43 ms
52,224 KB
testcase_27 AC 43 ms
52,480 KB
testcase_28 AC 467 ms
226,000 KB
testcase_29 AC 336 ms
155,916 KB
testcase_30 AC 343 ms
176,628 KB
testcase_31 AC 474 ms
214,284 KB
testcase_32 AC 448 ms
227,800 KB
testcase_33 AC 143 ms
105,728 KB
testcase_34 AC 348 ms
193,344 KB
testcase_35 AC 40 ms
52,480 KB
testcase_36 AC 40 ms
52,224 KB
testcase_37 AC 41 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


class UnionFind:
    __slots__ = ["n", "parent", "height", "size"]

    def __init__(self, n):
        self.n = n
        self.parent = [i for i in range(n)]
        self.height = [1] * n
        self.size = [1] * n

    def find(self, x):
        if self.parent[x] == x:
            return x
        else:
            self.parent[x] = self.find(self.parent[x])
            return self.parent[x]

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.height[x] < self.height[y]:
                self.parent[x] = y
                self.size[y] += self.size[x]
            else:
                self.parent[y] = x
                self.size[x] += self.size[y]
                if self.height[x] == self.height[y]:
                    self.height[x] += 1

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

    def group_size(self, x):
        return self.size[self.find(x)]

    def group_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.parent) if i == x]

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


N = int(input())
edges = []
for _ in range(N - 1):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edges.append((a, b, c))
MOD = 10 ** 9 + 7

ans = 0
for i in range(32):
    uf = UnionFind(N)
    for a, b, c in edges:
        if (c >> i) & 1:
            uf.unite(a, b)
    for root in uf.roots():
        size = uf.group_size(root)
        ans += (1 << i) * size * (size - 1) // 2
        ans %= MOD
print(ans)
0