結果

問題 No.1843 Tree ANDistance
ユーザー roarisroaris
提出日時 2022-02-28 01:43:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,508 ms / 2,000 ms
コード長 1,410 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 308,220 KB
最終ジャッジ日時 2024-07-06 04:42:03
合計ジャッジ時間 30,772 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,501 ms
297,484 KB
testcase_01 AC 1,501 ms
295,740 KB
testcase_02 AC 1,502 ms
297,256 KB
testcase_03 AC 1,495 ms
298,072 KB
testcase_04 AC 1,508 ms
308,220 KB
testcase_05 AC 1,022 ms
264,204 KB
testcase_06 AC 1,133 ms
273,200 KB
testcase_07 AC 1,463 ms
294,356 KB
testcase_08 AC 1,437 ms
291,092 KB
testcase_09 AC 1,397 ms
287,288 KB
testcase_10 AC 1,434 ms
271,216 KB
testcase_11 AC 1,464 ms
295,392 KB
testcase_12 AC 885 ms
262,104 KB
testcase_13 AC 1,084 ms
262,720 KB
testcase_14 AC 167 ms
78,176 KB
testcase_15 AC 168 ms
78,272 KB
testcase_16 AC 132 ms
77,792 KB
testcase_17 AC 126 ms
77,772 KB
testcase_18 AC 101 ms
76,852 KB
testcase_19 AC 122 ms
78,080 KB
testcase_20 AC 125 ms
77,952 KB
testcase_21 AC 41 ms
53,504 KB
testcase_22 AC 42 ms
54,016 KB
testcase_23 AC 41 ms
54,016 KB
testcase_24 AC 42 ms
54,016 KB
testcase_25 AC 42 ms
53,760 KB
testcase_26 AC 43 ms
53,888 KB
testcase_27 AC 43 ms
54,400 KB
testcase_28 AC 780 ms
227,060 KB
testcase_29 AC 567 ms
198,396 KB
testcase_30 AC 463 ms
190,372 KB
testcase_31 AC 831 ms
241,952 KB
testcase_32 AC 775 ms
225,628 KB
testcase_33 AC 240 ms
127,176 KB
testcase_34 AC 544 ms
210,248 KB
testcase_35 AC 42 ms
53,376 KB
testcase_36 AC 41 ms
54,144 KB
testcase_37 AC 43 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

N = int(input())
ABC = [tuple(map(int, input().split())) for _ in range(N-1)]
ans = 0
MOD = 10**9+7

for i in range(35):
    uf = Unionfind(N)
    
    for A, B, C in ABC:
        if (C>>i)&1:
            uf.unite(A-1, B-1)
        
    d = defaultdict(int)
    
    for v in range(N):
        d[uf.root(v)] += 1
    
    for v in d.values():
        ans += (1<<i)*v*(v-1)//2
        ans %= MOD

print(ans)
0