結果

問題 No.1843 Tree ANDistance
ユーザー chineristACchineristAC
提出日時 2022-02-18 22:20:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 1,115 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 197,636 KB
最終ジャッジ日時 2024-06-29 09:12:16
合計ジャッジ時間 11,818 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
170,936 KB
testcase_01 AC 510 ms
170,980 KB
testcase_02 AC 572 ms
197,636 KB
testcase_03 AC 512 ms
184,420 KB
testcase_04 AC 527 ms
163,512 KB
testcase_05 AC 402 ms
133,660 KB
testcase_06 AC 401 ms
133,236 KB
testcase_07 AC 486 ms
162,164 KB
testcase_08 AC 475 ms
160,300 KB
testcase_09 AC 488 ms
182,164 KB
testcase_10 AC 497 ms
188,684 KB
testcase_11 AC 528 ms
162,528 KB
testcase_12 AC 329 ms
127,288 KB
testcase_13 AC 396 ms
128,408 KB
testcase_14 AC 91 ms
78,496 KB
testcase_15 AC 93 ms
78,136 KB
testcase_16 AC 84 ms
78,584 KB
testcase_17 AC 79 ms
78,324 KB
testcase_18 AC 65 ms
74,100 KB
testcase_19 AC 82 ms
78,844 KB
testcase_20 AC 85 ms
78,308 KB
testcase_21 AC 41 ms
55,904 KB
testcase_22 AC 40 ms
57,088 KB
testcase_23 AC 40 ms
55,844 KB
testcase_24 AC 44 ms
56,596 KB
testcase_25 AC 45 ms
56,916 KB
testcase_26 AC 42 ms
56,272 KB
testcase_27 AC 40 ms
55,956 KB
testcase_28 AC 368 ms
144,564 KB
testcase_29 AC 256 ms
117,144 KB
testcase_30 AC 271 ms
122,604 KB
testcase_31 AC 428 ms
178,768 KB
testcase_32 AC 402 ms
147,828 KB
testcase_33 AC 133 ms
92,656 KB
testcase_34 AC 252 ms
112,172 KB
testcase_35 AC 41 ms
57,764 KB
testcase_36 AC 40 ms
56,216 KB
testcase_37 AC 41 ms
57,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
edge = [[] for v in range(N)]
for _ in range(N-1):
    a,b,c = mi()
    edge[a-1].append((b-1,c))
    edge[b-1].append((a-1,c))

parent = [(-1,-1) for v in range(N)]
topo = []
deq = deque([0])
while deq:
    v = deq.popleft()
    topo.append(v)
    for nv,c in edge[v]:
        if nv==parent[v][0]:
            continue
        parent[nv] = (v,c)
        deq.append(nv)

dp = [[(0,1) for k in range(30)] for v in range(N)]
for v in topo[::-1]:
    for nv,c in edge[v]:
        if nv==parent[v][0]:
            continue

        for k in range(30):
            x,y = dp[v][k]
            z,w = dp[nv][k]
            if c>>k & 1:
                dp[v][k] = (x+z+y*w,y+w)
            else:
                dp[v][k] = (x+z,y)

res = 0
for k in range(30):
    res += dp[0][k][0] * pow(2,k,10**9+7)

print(res % (10**9 + 7))
0