結果

問題 No.1843 Tree ANDistance
ユーザー titiatitia
提出日時 2022-02-18 22:08:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 819 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 139,356 KB
最終ジャッジ日時 2024-06-29 09:02:33
合計ジャッジ時間 15,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 769 ms
138,740 KB
testcase_01 AC 742 ms
139,264 KB
testcase_02 AC 676 ms
138,880 KB
testcase_03 AC 683 ms
139,356 KB
testcase_04 AC 698 ms
138,704 KB
testcase_05 AC 744 ms
138,496 KB
testcase_06 AC 786 ms
138,112 KB
testcase_07 AC 690 ms
135,436 KB
testcase_08 AC 716 ms
137,652 KB
testcase_09 AC 641 ms
135,604 KB
testcase_10 AC 639 ms
134,528 KB
testcase_11 AC 745 ms
137,872 KB
testcase_12 AC 819 ms
132,528 KB
testcase_13 AC 753 ms
134,360 KB
testcase_14 AC 130 ms
78,056 KB
testcase_15 AC 137 ms
77,780 KB
testcase_16 AC 106 ms
77,312 KB
testcase_17 AC 99 ms
76,896 KB
testcase_18 AC 84 ms
76,544 KB
testcase_19 AC 118 ms
77,128 KB
testcase_20 AC 103 ms
76,928 KB
testcase_21 AC 34 ms
52,224 KB
testcase_22 AC 34 ms
52,224 KB
testcase_23 AC 34 ms
52,480 KB
testcase_24 AC 34 ms
52,096 KB
testcase_25 AC 34 ms
51,968 KB
testcase_26 AC 34 ms
51,968 KB
testcase_27 AC 34 ms
52,352 KB
testcase_28 AC 322 ms
124,848 KB
testcase_29 AC 223 ms
109,624 KB
testcase_30 AC 190 ms
109,392 KB
testcase_31 AC 329 ms
129,384 KB
testcase_32 AC 394 ms
126,352 KB
testcase_33 AC 102 ms
92,928 KB
testcase_34 AC 231 ms
115,968 KB
testcase_35 AC 32 ms
51,968 KB
testcase_36 AC 32 ms
52,480 KB
testcase_37 AC 36 ms
57,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

# UnionFind

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

E=[tuple(map(int,input().split())) for i in range(n-1)]

LANS=0

for i in range(32):
    Group = [i for i in range(n+1)] # グループ分け
    Nodes = [1]*(n+1) # 各グループのノードの数

    for x,y,c in E:
        x-=1
        y-=1

        if c & (1<<i) != 0:
            Union(x,y)

    ANS=0

    for j in range(n):
        if find(j)==j:
            x=Nodes[j]

            ANS+=x*(x-1)//2

    LANS+=ANS*(1<<i)

print(LANS%mod)

        
0