結果

問題 No.1843 Tree ANDistance
ユーザー shinichishinichi
提出日時 2022-02-19 01:38:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 115,172 KB
最終ジャッジ日時 2024-06-29 10:11:39
合計ジャッジ時間 9,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 380 ms
114,800 KB
testcase_01 AC 364 ms
115,172 KB
testcase_02 AC 335 ms
113,164 KB
testcase_03 AC 349 ms
111,024 KB
testcase_04 AC 375 ms
115,052 KB
testcase_05 AC 292 ms
114,280 KB
testcase_06 AC 329 ms
114,412 KB
testcase_07 AC 356 ms
110,844 KB
testcase_08 AC 355 ms
113,568 KB
testcase_09 AC 341 ms
112,360 KB
testcase_10 AC 324 ms
112,356 KB
testcase_11 AC 388 ms
114,292 KB
testcase_12 AC 275 ms
110,184 KB
testcase_13 AC 308 ms
111,464 KB
testcase_14 AC 120 ms
77,312 KB
testcase_15 AC 116 ms
77,440 KB
testcase_16 AC 92 ms
77,120 KB
testcase_17 AC 94 ms
76,824 KB
testcase_18 AC 70 ms
75,776 KB
testcase_19 AC 86 ms
76,672 KB
testcase_20 AC 97 ms
76,544 KB
testcase_21 AC 35 ms
52,224 KB
testcase_22 AC 34 ms
51,968 KB
testcase_23 AC 34 ms
52,224 KB
testcase_24 AC 35 ms
51,840 KB
testcase_25 AC 35 ms
52,096 KB
testcase_26 AC 32 ms
52,480 KB
testcase_27 AC 31 ms
52,480 KB
testcase_28 AC 260 ms
105,820 KB
testcase_29 AC 210 ms
96,196 KB
testcase_30 AC 212 ms
97,352 KB
testcase_31 AC 261 ms
108,692 KB
testcase_32 AC 257 ms
106,668 KB
testcase_33 AC 105 ms
85,888 KB
testcase_34 AC 202 ms
99,620 KB
testcase_35 AC 35 ms
51,840 KB
testcase_36 AC 34 ms
52,608 KB
testcase_37 AC 34 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind(object):
    def __init__(self, size):
        self.parent = [-1] * size

    def root(self, x):
        if self.parent[x] < 0:
            return x
        self.parent[x] = self.root(self.parent[x])
        return self.parent[x]

    def union(self, x, y):
        x, y = self.root(x), self.root(y)
        if x == y:
            return False
        if self.parent[x] > self.parent[y]:
            x, y = y, x
        self.parent[x] += self.parent[y]
        self.parent[y] = x
        return True

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

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

ans = 0
mod = 10**9+7
for k in range(30):
    uf = UnionFind(N)
    for a, b, c in data:
        if c >> k & 1:
            uf.union(a-1, b-1)
    for r in range(N):
        if uf.parent[r] < 0:
            ans += (1 << k) * uf.size(r) * (uf.size(r) - 1) // 2
            ans %= mod

print(ans)




0