結果

問題 No.1843 Tree ANDistance
ユーザー ygd.ygd.
提出日時 2022-02-18 21:46:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,573 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 221,284 KB
最終ジャッジ日時 2024-06-29 08:38:59
合計ジャッジ時間 31,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
52,608 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 36 ms
52,736 KB
testcase_26 AC 37 ms
52,992 KB
testcase_27 WA -
testcase_28 AC 970 ms
180,496 KB
testcase_29 AC 720 ms
154,196 KB
testcase_30 AC 686 ms
150,576 KB
testcase_31 AC 1,160 ms
194,288 KB
testcase_32 AC 1,251 ms
184,340 KB
testcase_33 AC 323 ms
111,720 KB
testcase_34 AC 788 ms
172,732 KB
testcase_35 AC 35 ms
52,736 KB
testcase_36 AC 35 ms
52,736 KB
testcase_37 AC 36 ms
52,992 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)%MOD #この桁を見ている。
        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 = set([])
        for j in range(N):
            if uf.find(j) in used: continue
            used.add(uf.find(j))
            #print(j,uf.find(j),uf.get_size(j))
            num = uf.get_size(j)
            ans += base*num%MOD*(num-1)//2
            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