結果

問題 No.1843 Tree ANDistance
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-01-15 19:27:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 992 ms / 2,000 ms
コード長 1,743 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 223,804 KB
最終ジャッジ日時 2024-12-29 10:34:01
合計ジャッジ時間 21,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 950 ms
195,644 KB
testcase_01 AC 921 ms
189,884 KB
testcase_02 AC 869 ms
197,948 KB
testcase_03 AC 883 ms
191,420 KB
testcase_04 AC 992 ms
193,216 KB
testcase_05 AC 747 ms
205,500 KB
testcase_06 AC 839 ms
223,804 KB
testcase_07 AC 889 ms
189,192 KB
testcase_08 AC 891 ms
187,168 KB
testcase_09 AC 794 ms
165,988 KB
testcase_10 AC 781 ms
172,748 KB
testcase_11 AC 929 ms
188,084 KB
testcase_12 AC 660 ms
184,704 KB
testcase_13 AC 736 ms
194,420 KB
testcase_14 AC 180 ms
79,016 KB
testcase_15 AC 169 ms
78,628 KB
testcase_16 AC 127 ms
78,104 KB
testcase_17 AC 124 ms
78,064 KB
testcase_18 AC 113 ms
77,344 KB
testcase_19 AC 134 ms
78,976 KB
testcase_20 AC 127 ms
77,952 KB
testcase_21 AC 50 ms
55,808 KB
testcase_22 AC 51 ms
55,936 KB
testcase_23 AC 52 ms
55,808 KB
testcase_24 AC 51 ms
55,680 KB
testcase_25 AC 48 ms
55,936 KB
testcase_26 AC 49 ms
56,448 KB
testcase_27 AC 52 ms
56,448 KB
testcase_28 AC 631 ms
196,108 KB
testcase_29 AC 464 ms
147,876 KB
testcase_30 AC 466 ms
148,652 KB
testcase_31 AC 652 ms
219,948 KB
testcase_32 AC 619 ms
198,856 KB
testcase_33 AC 210 ms
103,468 KB
testcase_34 AC 482 ms
166,368 KB
testcase_35 AC 51 ms
55,808 KB
testcase_36 AC 49 ms
55,808 KB
testcase_37 AC 52 ms
56,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from heapq import *
from functools import *
import sys,math
input = sys.stdin.readline

N = int(input())
edge = defaultdict(int)
for _ in range(N-1):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    edge[(a,b)]=c

mod = 10**9 + 7
class DSU:
    def __init__(self, n):
        self._n = n
        self.parent_or_size = [-1] * n

    def merge(self, a, b):
        assert 0 <= a < self._n
        assert 0 <= b < self._n
        x, y = self.leader(a), self.leader(b)
        if x == y: return x
        if -self.parent_or_size[x] < -self.parent_or_size[y]: x, y = y, x
        self.parent_or_size[x] += self.parent_or_size[y]
        self.parent_or_size[y] = x
        return x

    def same(self, a, b):
        assert 0 <= a < self._n
        assert 0 <= b < self._n
        return self.leader(a) == self.leader(b)

    def leader(self, a):
        assert 0 <= a < self._n
        if self.parent_or_size[a] < 0: return a
        self.parent_or_size[a] = self.leader(self.parent_or_size[a])
        return self.parent_or_size[a]

    def size(self, a):
        assert 0 <= a < self._n
        return -self.parent_or_size[self.leader(a)]

    def groups(self):
        leader_buf = [self.leader(i) for i in range(self._n)]
        result = [[] for _ in range(self._n)]
        for i in range(self._n): result[leader_buf[i]].append(i)
        return [r for r in result if r != []]

ans = 0

for i in range(31):
    
    D = DSU(N)
    
    for k,v in edge.items():
        
        if (v>>i)&1:
            D.merge(k[0],k[1])
    B = (1<<i)
    for g in D.groups():
        
        n = len(g)
        
        ans += B*(n*(n-1))//2
        ans %= mod
print(ans)
    
    
    
    
0