結果

問題 No.1843 Tree ANDistance
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-02-19 16:34:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 113,868 KB
最終ジャッジ日時 2024-06-29 10:27:52
合計ジャッジ時間 12,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 452 ms
106,604 KB
testcase_01 AC 495 ms
107,416 KB
testcase_02 AC 419 ms
113,868 KB
testcase_03 AC 443 ms
113,724 KB
testcase_04 AC 493 ms
108,572 KB
testcase_05 AC 380 ms
104,576 KB
testcase_06 AC 429 ms
113,516 KB
testcase_07 AC 461 ms
112,952 KB
testcase_08 AC 468 ms
113,832 KB
testcase_09 AC 414 ms
111,364 KB
testcase_10 AC 401 ms
110,760 KB
testcase_11 AC 484 ms
106,096 KB
testcase_12 AC 350 ms
110,476 KB
testcase_13 AC 402 ms
111,604 KB
testcase_14 AC 171 ms
80,384 KB
testcase_15 AC 172 ms
80,788 KB
testcase_16 AC 143 ms
80,128 KB
testcase_17 AC 140 ms
80,224 KB
testcase_18 AC 119 ms
79,872 KB
testcase_19 AC 134 ms
80,444 KB
testcase_20 AC 143 ms
80,216 KB
testcase_21 AC 69 ms
69,504 KB
testcase_22 AC 68 ms
69,504 KB
testcase_23 AC 68 ms
69,376 KB
testcase_24 AC 70 ms
69,376 KB
testcase_25 AC 70 ms
69,504 KB
testcase_26 AC 69 ms
69,760 KB
testcase_27 AC 69 ms
69,504 KB
testcase_28 AC 320 ms
106,176 KB
testcase_29 AC 271 ms
98,104 KB
testcase_30 AC 280 ms
98,528 KB
testcase_31 AC 317 ms
108,724 KB
testcase_32 AC 327 ms
106,864 KB
testcase_33 AC 156 ms
88,704 KB
testcase_34 AC 272 ms
101,112 KB
testcase_35 AC 67 ms
69,248 KB
testcase_36 AC 68 ms
69,376 KB
testcase_37 AC 69 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from ctypes import Union


class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]


n = int(input())
ans = 0
mod = 10**9+7

edges = [list(map(int,input().split())) for i in range(n-1)]
for i in range(30):
    uf = Unionfind(n)
    for a,b,c in edges:
        if c >> i & 1:
            uf.union(a-1,b-1)
    count = 0
    for ind in range(n):
        if uf.find(ind) != ind:
            continue
        s = uf.size(ind)
        count += s*(s-1)//2
    
    ans += (count<<i)%mod
    ans %= mod
print(ans)
0