結果

問題 No.1843 Tree ANDistance
ユーザー shobonvipshobonvip
提出日時 2022-02-19 00:19:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-06-29 10:04:40
合計ジャッジ時間 11,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
102,016 KB
testcase_01 AC 546 ms
102,144 KB
testcase_02 AC 494 ms
101,964 KB
testcase_03 AC 496 ms
101,888 KB
testcase_04 AC 546 ms
101,888 KB
testcase_05 AC 400 ms
101,564 KB
testcase_06 AC 417 ms
101,564 KB
testcase_07 AC 499 ms
100,936 KB
testcase_08 AC 488 ms
101,204 KB
testcase_09 AC 465 ms
100,096 KB
testcase_10 AC 457 ms
100,096 KB
testcase_11 AC 535 ms
101,248 KB
testcase_12 AC 350 ms
99,456 KB
testcase_13 AC 364 ms
99,584 KB
testcase_14 AC 111 ms
77,568 KB
testcase_15 AC 113 ms
77,312 KB
testcase_16 AC 94 ms
76,748 KB
testcase_17 AC 90 ms
76,916 KB
testcase_18 AC 91 ms
76,672 KB
testcase_19 AC 89 ms
77,284 KB
testcase_20 AC 91 ms
76,628 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 39 ms
52,352 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 39 ms
51,712 KB
testcase_26 AC 40 ms
51,840 KB
testcase_27 AC 39 ms
52,352 KB
testcase_28 AC 232 ms
96,060 KB
testcase_29 AC 190 ms
89,500 KB
testcase_30 AC 196 ms
89,752 KB
testcase_31 AC 231 ms
97,296 KB
testcase_32 AC 228 ms
96,200 KB
testcase_33 AC 107 ms
83,072 KB
testcase_34 AC 174 ms
92,288 KB
testcase_35 AC 39 ms
52,096 KB
testcase_36 AC 39 ms
52,224 KB
testcase_37 AC 41 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
	def __init__(self, n):
		self.n = n
		self.parents = [-1] * n
	
	def find(self, x):
		if self.parents[x] < 0:
			return x
		else:
			self.parents[x] = self.find(self.parents[x])
			return self.parents[x]
	
	def union(self, x, y):
		x = self.find(x)
		y = self.find(y)
		if x == y:
			return
		if self.parents[x] > self.parents[y]:
			x, y = y, x
		self.parents[x] += self.parents[y]
		self.parents[y] = x

n = int(input())
ans = 0
union = [UnionFind(n) for _ in range(32)]
mod = 10**9 + 7

for i in range(n-1):
	a, b, c = map(int,input().split())
	for j in range(32):
		if (c >> j) & 1 == 1:
			union[j].union(a-1, b-1)

for i in range(n):
	for j in range(32):
		t = -union[j].parents[i]
		if t > 0:
			ans = (ans + t * (t - 1) // 2 * (1 << j)) % mod

print(ans)
0