結果

問題 No.1843 Tree ANDistance
ユーザー ああいいああいい
提出日時 2022-02-18 22:03:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,095 ms / 2,000 ms
コード長 1,030 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 141,056 KB
最終ジャッジ日時 2024-06-29 08:58:35
合計ジャッジ時間 17,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 968 ms
101,764 KB
testcase_01 AC 1,026 ms
101,776 KB
testcase_02 AC 921 ms
101,340 KB
testcase_03 AC 1,011 ms
101,328 KB
testcase_04 AC 852 ms
101,248 KB
testcase_05 AC 675 ms
141,056 KB
testcase_06 AC 1,095 ms
131,272 KB
testcase_07 AC 974 ms
99,968 KB
testcase_08 AC 937 ms
101,116 KB
testcase_09 AC 1,018 ms
100,404 KB
testcase_10 AC 979 ms
100,480 KB
testcase_11 AC 1,061 ms
101,596 KB
testcase_12 AC 631 ms
135,284 KB
testcase_13 AC 821 ms
116,196 KB
testcase_14 AC 116 ms
77,696 KB
testcase_15 AC 121 ms
77,824 KB
testcase_16 AC 87 ms
77,056 KB
testcase_17 AC 84 ms
77,184 KB
testcase_18 AC 83 ms
76,792 KB
testcase_19 AC 94 ms
77,648 KB
testcase_20 AC 87 ms
77,056 KB
testcase_21 AC 35 ms
52,096 KB
testcase_22 AC 34 ms
52,480 KB
testcase_23 AC 33 ms
52,736 KB
testcase_24 AC 34 ms
52,736 KB
testcase_25 AC 34 ms
52,224 KB
testcase_26 AC 35 ms
52,864 KB
testcase_27 AC 34 ms
52,352 KB
testcase_28 AC 270 ms
91,648 KB
testcase_29 AC 201 ms
87,400 KB
testcase_30 AC 111 ms
84,992 KB
testcase_31 AC 263 ms
93,696 KB
testcase_32 AC 241 ms
92,608 KB
testcase_33 AC 75 ms
81,028 KB
testcase_34 AC 180 ms
99,200 KB
testcase_35 AC 32 ms
52,224 KB
testcase_36 AC 32 ms
52,096 KB
testcase_37 AC 33 ms
52,952 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+1):
    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