結果

問題 No.1843 Tree ANDistance
ユーザー customaddonecustomaddone
提出日時 2022-03-05 00:47:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 2,469 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 114,652 KB
最終ジャッジ日時 2024-07-18 23:52:05
合計ジャッジ時間 10,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 382 ms
114,308 KB
testcase_01 AC 355 ms
114,052 KB
testcase_02 AC 335 ms
113,920 KB
testcase_03 AC 336 ms
114,176 KB
testcase_04 AC 384 ms
114,612 KB
testcase_05 AC 273 ms
114,120 KB
testcase_06 AC 322 ms
114,652 KB
testcase_07 AC 357 ms
112,912 KB
testcase_08 AC 360 ms
113,968 KB
testcase_09 AC 322 ms
109,560 KB
testcase_10 AC 305 ms
103,680 KB
testcase_11 AC 368 ms
114,220 KB
testcase_12 AC 249 ms
110,976 KB
testcase_13 AC 309 ms
112,304 KB
testcase_14 AC 121 ms
78,520 KB
testcase_15 AC 118 ms
78,788 KB
testcase_16 AC 99 ms
77,592 KB
testcase_17 AC 99 ms
77,828 KB
testcase_18 AC 83 ms
77,440 KB
testcase_19 AC 89 ms
78,304 KB
testcase_20 AC 99 ms
78,068 KB
testcase_21 AC 48 ms
61,824 KB
testcase_22 AC 44 ms
62,080 KB
testcase_23 AC 46 ms
61,952 KB
testcase_24 AC 48 ms
61,952 KB
testcase_25 AC 48 ms
61,824 KB
testcase_26 AC 49 ms
61,696 KB
testcase_27 AC 48 ms
61,696 KB
testcase_28 AC 248 ms
105,984 KB
testcase_29 AC 211 ms
97,300 KB
testcase_30 AC 209 ms
97,432 KB
testcase_31 AC 236 ms
108,160 KB
testcase_32 AC 260 ms
106,992 KB
testcase_33 AC 108 ms
86,176 KB
testcase_34 AC 204 ms
101,460 KB
testcase_35 AC 45 ms
61,824 KB
testcase_36 AC 44 ms
61,824 KB
testcase_37 AC 45 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
from heapq import heapify, heappop, heappush
import math
from copy import deepcopy
from itertools import combinations, permutations, product, combinations_with_replacement
from bisect import bisect_left, bisect_right

import sys

def input():
    return sys.stdin.readline().rstrip()
def getN():
    return int(input())
def getNM():
    return map(int, input().split())
def getList():
    return list(map(int, input().split()))
def getListGraph():
    return list(map(lambda x:int(x) - 1, input().split()))
def getArray(intn):
    return [int(input()) for i in range(intn)]

mod = 10 ** 9 + 7
MOD = 998244353
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10000000)
inf = float('inf')
eps = 10 ** (-15)
dy = [0, 1, 0, -1]
dx = [1, 0, -1, 0]

#############
# Main Code #
#############

"""
UFってこと
"""

# ルートの決定方法はいじれる
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

        # 謎のREが起こったらrootの設定方法を変えよう
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        # if x > y: # よりrootのインデックスが小さい方が親
            # x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def size(self, x):
        return -self.parents[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.parents) if x < 0]

    def all_group_members(self):
        return {r: self.members(r) for r in self.roots()}

N = getN()
E = []
for _ in range(N - 1):
    a, b, c = getNM()
    E.append([a - 1, b - 1, c])

ans = 0
for i in range(32):
    U = UnionFind(N)
    for a, b, c in E:
        if c & (1 << i):
            U.union(a, b)
    for j in range(N):
        if j == U.find(j):
            t = U.size(j)
            ans += (1 << i) * (t * (t - 1) // 2)
            ans %= mod

print(ans)
0