結果

問題 No.1843 Tree ANDistance
ユーザー tamatotamato
提出日時 2022-02-18 21:26:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 1,495 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 139,080 KB
最終ジャッジ日時 2024-06-29 08:17:55
合計ジャッジ時間 16,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 773 ms
137,916 KB
testcase_01 AC 757 ms
139,012 KB
testcase_02 AC 731 ms
138,116 KB
testcase_03 AC 749 ms
138,412 KB
testcase_04 AC 774 ms
139,080 KB
testcase_05 AC 642 ms
137,848 KB
testcase_06 AC 714 ms
138,708 KB
testcase_07 AC 707 ms
135,684 KB
testcase_08 AC 721 ms
137,036 KB
testcase_09 AC 711 ms
135,544 KB
testcase_10 AC 702 ms
135,120 KB
testcase_11 AC 747 ms
138,108 KB
testcase_12 AC 528 ms
131,132 KB
testcase_13 AC 659 ms
133,184 KB
testcase_14 AC 108 ms
76,916 KB
testcase_15 AC 108 ms
76,672 KB
testcase_16 AC 92 ms
76,032 KB
testcase_17 AC 89 ms
76,672 KB
testcase_18 AC 82 ms
76,772 KB
testcase_19 AC 83 ms
77,312 KB
testcase_20 AC 88 ms
77,368 KB
testcase_21 AC 37 ms
52,864 KB
testcase_22 AC 38 ms
52,608 KB
testcase_23 AC 40 ms
52,736 KB
testcase_24 AC 38 ms
52,480 KB
testcase_25 AC 38 ms
52,608 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 39 ms
52,608 KB
testcase_28 AC 456 ms
104,708 KB
testcase_29 AC 359 ms
98,304 KB
testcase_30 AC 375 ms
97,464 KB
testcase_31 AC 515 ms
129,072 KB
testcase_32 AC 494 ms
124,716 KB
testcase_33 AC 196 ms
88,120 KB
testcase_34 AC 361 ms
99,400 KB
testcase_35 AC 37 ms
54,060 KB
testcase_36 AC 37 ms
52,788 KB
testcase_37 AC 38 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    class UnionFind():
        def __init__(self, n):
            self.n = n
            self.root = [-1] * (n + 1)
            self.rnk = [0] * (n + 1)

        def find_root(self, x):
            while self.root[x] >= 0:
                x = self.root[x]
            return x

        def unite(self, x, y):
            x = self.find_root(x)
            y = self.find_root(y)
            if x == y:
                return
            elif self.rnk[x] > self.rnk[y]:
                self.root[x] += self.root[y]
                self.root[y] = x
            else:
                self.root[y] += self.root[x]
                self.root[x] = y
                if self.rnk[x] == self.rnk[y]:
                    self.rnk[y] += 1

        def isSameGroup(self, x, y):
            return self.find_root(x) == self.find_root(y)

        def size(self, x):
            return -self.root[self.find_root(x)]

    N = int(input())
    ABC = []
    for _ in range(N - 1):
        ABC.append(tuple(map(int, input().split())))

    ans = 0
    for lv in range(31):
        UF = UnionFind(N)
        for a, b, c in ABC:
            if c >> lv & 1:
                UF.unite(a, b)
        for v in range(1, N+1):
            if UF.find_root(v) == v:
                x = UF.size(v)
                ans += pow(2, lv, mod) * x * (x - 1) // 2
                ans %= mod
    print(ans)


if __name__ == '__main__':
    main()
0