結果

問題 No.1843 Tree ANDistance
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-19 15:28:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 1,372 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 142,456 KB
最終ジャッジ日時 2024-06-29 10:25:51
合計ジャッジ時間 9,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 378 ms
138,324 KB
testcase_01 AC 390 ms
138,568 KB
testcase_02 AC 336 ms
141,212 KB
testcase_03 AC 326 ms
141,700 KB
testcase_04 AC 392 ms
138,144 KB
testcase_05 AC 284 ms
141,152 KB
testcase_06 AC 327 ms
142,456 KB
testcase_07 AC 363 ms
131,376 KB
testcase_08 AC 385 ms
135,016 KB
testcase_09 AC 342 ms
139,428 KB
testcase_10 AC 333 ms
136,568 KB
testcase_11 AC 396 ms
140,928 KB
testcase_12 AC 264 ms
136,160 KB
testcase_13 AC 290 ms
136,552 KB
testcase_14 AC 109 ms
77,728 KB
testcase_15 AC 112 ms
77,608 KB
testcase_16 AC 82 ms
76,544 KB
testcase_17 AC 84 ms
76,544 KB
testcase_18 AC 73 ms
75,904 KB
testcase_19 AC 78 ms
77,164 KB
testcase_20 AC 85 ms
76,624 KB
testcase_21 AC 35 ms
52,480 KB
testcase_22 AC 34 ms
52,224 KB
testcase_23 AC 33 ms
52,224 KB
testcase_24 AC 32 ms
52,224 KB
testcase_25 AC 31 ms
52,736 KB
testcase_26 AC 35 ms
52,352 KB
testcase_27 AC 34 ms
52,608 KB
testcase_28 AC 262 ms
126,192 KB
testcase_29 AC 212 ms
110,744 KB
testcase_30 AC 214 ms
110,432 KB
testcase_31 AC 247 ms
131,280 KB
testcase_32 AC 259 ms
127,504 KB
testcase_33 AC 94 ms
92,672 KB
testcase_34 AC 209 ms
116,460 KB
testcase_35 AC 35 ms
52,224 KB
testcase_36 AC 34 ms
52,608 KB
testcase_37 AC 36 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [0]*n

    def Find(self, x):
        if self.par[x] < 0:
            return x
        else:
            self.par[x] = self.Find(self.par[x])
            return self.par[x]

    def Unite(self, x, y):
        x = self.Find(x)
        y = self.Find(y)

        if x != y:
            if self.rank[x] < self.rank[y]:
                self.par[y] += self.par[x]
                self.par[x] = y
            else:
                self.par[x] += self.par[y]
                self.par[y] = x
                if self.rank[x] == self.rank[y]:
                    self.rank[x] += 1

    def Same(self, x, y):
        return self.Find(x) == self.Find(y)

    def Size(self, x):
        return -self.par[self.Find(x)]

mod = 10**9+7
P = [0]*33
P[0] = 1
for i in range(1, 33):
    P[i] = P[i-1]*2
    P[i] %= mod

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n = int(input())
E = []
for i in range(n-1):
    a, b, c = map(int, input().split())
    a, b = a-1, b-1
    E.append((a, b, c))

ans = 0
for i in range(32):
    uf = UnionFind(n)
    for a, b, c in E:
        if (c>>i)&1:
            uf.Unite(a, b)
    for j in range(n):
        if uf.par[j] < 0:
            c = uf.Size(j)
            ans += P[i]*(c*(c-1)//2)
            ans %= mod
print(ans)
0