結果

問題 No.1843 Tree ANDistance
ユーザー asumo0729asumo0729
提出日時 2022-02-18 22:05:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 2,477 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 223,488 KB
最終ジャッジ日時 2024-06-29 08:59:18
合計ジャッジ時間 12,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 499 ms
130,304 KB
testcase_01 AC 497 ms
131,584 KB
testcase_02 AC 475 ms
136,576 KB
testcase_03 AC 463 ms
134,016 KB
testcase_04 AC 506 ms
132,352 KB
testcase_05 AC 420 ms
135,296 KB
testcase_06 AC 451 ms
132,992 KB
testcase_07 AC 472 ms
131,328 KB
testcase_08 AC 501 ms
132,224 KB
testcase_09 AC 456 ms
133,248 KB
testcase_10 AC 445 ms
131,584 KB
testcase_11 AC 507 ms
132,224 KB
testcase_12 AC 387 ms
130,432 KB
testcase_13 AC 422 ms
130,304 KB
testcase_14 AC 147 ms
78,464 KB
testcase_15 AC 150 ms
78,848 KB
testcase_16 AC 119 ms
77,440 KB
testcase_17 AC 115 ms
78,080 KB
testcase_18 AC 107 ms
77,184 KB
testcase_19 AC 120 ms
77,696 KB
testcase_20 AC 119 ms
77,696 KB
testcase_21 AC 58 ms
61,568 KB
testcase_22 AC 58 ms
61,184 KB
testcase_23 AC 59 ms
61,568 KB
testcase_24 AC 58 ms
61,312 KB
testcase_25 AC 57 ms
61,568 KB
testcase_26 AC 57 ms
61,312 KB
testcase_27 AC 57 ms
61,184 KB
testcase_28 AC 394 ms
135,040 KB
testcase_29 AC 327 ms
120,064 KB
testcase_30 AC 326 ms
118,528 KB
testcase_31 AC 449 ms
223,488 KB
testcase_32 AC 424 ms
213,632 KB
testcase_33 AC 162 ms
96,768 KB
testcase_34 AC 314 ms
124,160 KB
testcase_35 AC 57 ms
61,312 KB
testcase_36 AC 57 ms
60,928 KB
testcase_37 AC 58 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
import bisect
import math
import itertools
import copy

stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
inf = float('inf')
mod = 10 ** 9 + 7
#mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])

from collections import Counter

class union_find():
    def __init__(self,n):
        self.n=n
        ##親要素のノード番号を格納。par[x]==xのときそのノードは根
        ##親とはその上にノードなし!! 
        self.par=[-1 for i in range(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 union(self,x,y):
        x=self.find(x)
        y=self.find(y)

        ##木の高さを比較し、低い方から高い方へ辺をはる
        if x==y:
          return

        if self.par[x]>self.par[y]:
          x,y=y,x
          
        self.par[x]+=self.par[y]
        self.par[y]=x

    ##2つが同じ親かどうか
    def same(self,x,y):
        return self.find(x) == self.find(y)
    
    ##所属のサイズ
    def size(self,x):
      return -self.par[self.find(x)]
      
    ##同じ親のものを表示
    def members(self,x):
      root=self.find(x)
      return [i for i in range(self.n) if self.find(i)==root]
    
    ##親を表示!!
    def roots(self):
      return [i for i, x in enumerate(self.par) if x<0]
    
    def all_group_member(self):
      return {r:self.members(r) for r in self.roots()}

    def group_count(self):
      return len(self.roots())

## uf memo
## 素集合に分けるが、各集合には親というIDが振られているという意識を持つ!!(ABC049_Dより)

###############################################################

N = ip()
adj = []
for _ in range(N - 1):
    a, b, c = lp()
    a -= 1; b -= 1
    adj.append((a, b, c))
    
ans = 0

for j in range(30):
    uf = union_find(N)
    for a, b, c in adj:
        if (c >> j) & 1:
             uf.union(a, b)
    for p in uf.roots():
        s = uf.size(p)
        ans += (2 ** j) * s * (s - 1) // 2
        ans %= mod
print(ans)
0