結果

問題 No.1843 Tree ANDistance
ユーザー ああいいああいい
提出日時 2022-02-18 22:01:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,028 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 140,760 KB
最終ジャッジ日時 2024-06-29 08:55:14
合計ジャッジ時間 16,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 899 ms
101,360 KB
testcase_01 AC 967 ms
101,504 KB
testcase_02 AC 1,031 ms
101,504 KB
testcase_03 AC 1,053 ms
101,888 KB
testcase_04 AC 838 ms
101,120 KB
testcase_05 AC 638 ms
140,760 KB
testcase_06 AC 812 ms
130,700 KB
testcase_07 AC 818 ms
99,968 KB
testcase_08 AC 788 ms
101,504 KB
testcase_09 AC 861 ms
101,120 KB
testcase_10 AC 858 ms
99,456 KB
testcase_11 AC 901 ms
101,248 KB
testcase_12 AC 601 ms
132,868 KB
testcase_13 AC 793 ms
116,616 KB
testcase_14 AC 119 ms
77,696 KB
testcase_15 AC 118 ms
78,140 KB
testcase_16 AC 90 ms
77,312 KB
testcase_17 AC 85 ms
77,000 KB
testcase_18 AC 79 ms
76,480 KB
testcase_19 AC 91 ms
77,460 KB
testcase_20 AC 85 ms
77,440 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 35 ms
52,608 KB
testcase_23 AC 35 ms
51,840 KB
testcase_24 AC 36 ms
52,480 KB
testcase_25 AC 35 ms
52,352 KB
testcase_26 AC 34 ms
52,224 KB
testcase_27 AC 33 ms
52,608 KB
testcase_28 AC 244 ms
91,264 KB
testcase_29 AC 180 ms
86,728 KB
testcase_30 WA -
testcase_31 AC 256 ms
93,168 KB
testcase_32 AC 253 ms
91,840 KB
testcase_33 WA -
testcase_34 AC 174 ms
97,152 KB
testcase_35 AC 32 ms
52,096 KB
testcase_36 AC 31 ms
52,224 KB
testcase_37 AC 33 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
r = sys.stdin
sys.setrecursionlimit(10 ** 8)
N = int(r.readline())
_max = 0
G = [[] for _ in range(N+1)]
for _ in range(N-1):
    a,b,c = map(int,r.readline().split())
    if c > _max:
        _max = c
    G[a].append((b,c))
    G[b].append((a,c))
k = 0
while 1 << k < _max:
    k += 1
ans = 0
P = 10 ** 9 + 7
def find(i):
    if parent[i] < 0:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    if parent[I] < parent[J]:
        I,J = J,I
    parent[J] += parent[I]
    parent[I] = J
    return True
for i in range(k):
    mask = 1 << i
    parent = [-1] * (N+1)
    stack = [(1,-1)]
    while stack:
        now,p = stack.pop()
        for v,c in G[now]:
            if v == p:continue
            if c & mask:
                unite(now,v)
            stack.append((v,now))
    for i in range(1,N+1):
        if parent[i] < 0:
            num = -parent[i]
            ans = (ans + num * (num-1) //2 % P * mask) % P
print(ans)
0