結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,326 ms
142,140 KB
testcase_01 AC 1,300 ms
146,748 KB
testcase_02 AC 1,374 ms
142,532 KB
testcase_03 AC 1,266 ms
150,024 KB
testcase_04 AC 1,130 ms
142,692 KB
testcase_05 AC 901 ms
179,660 KB
testcase_06 AC 984 ms
171,296 KB
testcase_07 AC 1,216 ms
139,108 KB
testcase_08 AC 1,362 ms
152,640 KB
testcase_09 AC 1,474 ms
138,436 KB
testcase_10 AC 1,425 ms
141,328 KB
testcase_11 AC 1,338 ms
153,528 KB
testcase_12 AC 847 ms
156,848 KB
testcase_13 AC 969 ms
154,732 KB
testcase_14 AC 104 ms
76,824 KB
testcase_15 AC 107 ms
77,252 KB
testcase_16 AC 96 ms
77,056 KB
testcase_17 AC 91 ms
76,672 KB
testcase_18 AC 81 ms
76,032 KB
testcase_19 AC 96 ms
77,224 KB
testcase_20 AC 88 ms
77,184 KB
testcase_21 AC 41 ms
52,736 KB
testcase_22 AC 39 ms
52,992 KB
testcase_23 AC 37 ms
53,120 KB
testcase_24 AC 37 ms
52,736 KB
testcase_25 AC 37 ms
52,736 KB
testcase_26 AC 37 ms
52,992 KB
testcase_27 AC 34 ms
52,884 KB
testcase_28 AC 870 ms
123,120 KB
testcase_29 AC 619 ms
106,636 KB
testcase_30 AC 535 ms
109,324 KB
testcase_31 AC 858 ms
132,536 KB
testcase_32 AC 814 ms
128,880 KB
testcase_33 AC 256 ms
96,944 KB
testcase_34 AC 538 ms
132,436 KB
testcase_35 AC 41 ms
52,992 KB
testcase_36 AC 39 ms
52,736 KB
testcase_37 AC 38 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]


def main():
    N = int(input())
    G = [[] for _ in range(N)]
    for i in range(N-1):
        a,b,c = map(int,input().split())
        a -= 1; b -= 1
        G[a].append((b,c)); G[b].append((a,c))
    
    ans = 0
    for i in range(33):
        base = (1<<i) #この桁を見ている。
        uf = UnionFind(N)
        stack = []
        stack.append(0)
        par = [-1]*N
        while stack:
            v = stack.pop()
            for u,c in G[v]:
                if par[v] == u: continue
                par[u] = v
                if (c>>i)&1 == 1:
                    uf.union(u,v)
                stack.append(u)
        used = [0]*N
        for j in range(N):
            if used[uf.find(j)] == 1: continue
            used[uf.find(j)] = 1
            #print(j,uf.find(j),uf.get_size(j))
            num = uf.get_size(j)
            temp = num*(num-1)//2%MOD
            ans += base*temp%MOD
            ans %= MOD
    print(ans)


        
class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]
    def find(self, x):
        """
        x が属するグループを探索して親を出す。
        """
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    def union(self, x, y):
        """
        x と y のグループを結合
        """
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]
    def is_same(self, x, y):
        """
        x と y が同じグループか否か
        """
        return self.find(x) == self.find(y)
    def get_size(self, x):
        """
        x が属するグループの要素数
        """
        x = self.find(x)
        return self.size[x]


if __name__ == '__main__':
    main()
0