結果

問題 No.1843 Tree ANDistance
ユーザー tktk_snsntktk_snsn
提出日時 2022-02-18 21:52:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 1,294 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 142,516 KB
最終ジャッジ日時 2024-06-29 08:46:18
合計ジャッジ時間 11,679 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
141,940 KB
testcase_01 AC 558 ms
142,504 KB
testcase_02 AC 456 ms
138,624 KB
testcase_03 AC 454 ms
138,640 KB
testcase_04 AC 533 ms
142,516 KB
testcase_05 AC 531 ms
127,164 KB
testcase_06 AC 540 ms
141,660 KB
testcase_07 AC 507 ms
139,076 KB
testcase_08 AC 514 ms
140,816 KB
testcase_09 AC 438 ms
132,360 KB
testcase_10 AC 423 ms
132,112 KB
testcase_11 AC 540 ms
141,908 KB
testcase_12 AC 527 ms
135,100 KB
testcase_13 AC 505 ms
137,356 KB
testcase_14 AC 116 ms
78,024 KB
testcase_15 AC 124 ms
77,184 KB
testcase_16 AC 105 ms
77,184 KB
testcase_17 AC 88 ms
77,052 KB
testcase_18 AC 82 ms
76,288 KB
testcase_19 AC 93 ms
76,672 KB
testcase_20 AC 87 ms
76,560 KB
testcase_21 AC 35 ms
52,352 KB
testcase_22 AC 35 ms
52,736 KB
testcase_23 AC 32 ms
51,968 KB
testcase_24 AC 34 ms
51,968 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 38 ms
51,968 KB
testcase_28 AC 249 ms
127,616 KB
testcase_29 AC 222 ms
111,104 KB
testcase_30 AC 180 ms
111,620 KB
testcase_31 AC 271 ms
132,120 KB
testcase_32 AC 239 ms
128,328 KB
testcase_33 AC 97 ms
92,552 KB
testcase_34 AC 219 ms
116,160 KB
testcase_35 AC 36 ms
52,752 KB
testcase_36 AC 36 ms
52,684 KB
testcase_37 AC 38 ms
54,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 10 ** 9 + 7


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

    def find(self, x):
        stack = []
        while self.root[x] >= 0:
            stack.append(x)
            x = self.root[x]
        for i in stack:
            self.root[i] = x
        return x

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

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.rank[x] < self.rank[y]:
            self.root[y] += self.root[x]
            self.root[x] = y
        else:
            self.root[x] += self.root[y]
            self.root[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
        return True

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


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


two = 1
ans = 0
for d in range(33):
    edge = []
    uf = UF_tree(N + 1)
    for a, b, c in ABC:
        if (c >> d) & 1:
            ans += uf.size(a) * uf.size(b) * two
            ans %= mod
            uf.unite(a, b)
    two <<= 1

print(ans)
0