結果

問題 No.1843 Tree ANDistance
ユーザー 👑 rin204rin204
提出日時 2022-02-18 21:46:51
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 676 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 232,576 KB
最終ジャッジ日時 2024-06-29 08:39:16
合計ジャッジ時間 15,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 573 ms
125,440 KB
testcase_01 AC 520 ms
124,800 KB
testcase_02 TLE -
testcase_03 AC 911 ms
227,328 KB
testcase_04 AC 568 ms
125,184 KB
testcase_05 AC 408 ms
126,080 KB
testcase_06 AC 450 ms
125,824 KB
testcase_07 AC 557 ms
123,520 KB
testcase_08 AC 529 ms
124,544 KB
testcase_09 AC 943 ms
232,576 KB
testcase_10 AC 831 ms
229,760 KB
testcase_11 AC 526 ms
124,160 KB
testcase_12 AC 374 ms
121,216 KB
testcase_13 AC 417 ms
121,856 KB
testcase_14 AC 121 ms
78,464 KB
testcase_15 AC 116 ms
78,336 KB
testcase_16 AC 101 ms
77,696 KB
testcase_17 AC 92 ms
75,264 KB
testcase_18 AC 63 ms
64,128 KB
testcase_19 AC 100 ms
78,592 KB
testcase_20 AC 87 ms
75,008 KB
testcase_21 AC 40 ms
51,712 KB
testcase_22 AC 40 ms
51,840 KB
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 41 ms
52,096 KB
testcase_26 AC 41 ms
51,968 KB
testcase_27 AC 41 ms
52,224 KB
testcase_28 AC 431 ms
115,072 KB
testcase_29 AC 319 ms
103,040 KB
testcase_30 AC 526 ms
172,416 KB
testcase_31 AC 713 ms
208,512 KB
testcase_32 AC 421 ms
115,328 KB
testcase_33 AC 146 ms
89,088 KB
testcase_34 AC 256 ms
107,264 KB
testcase_35 AC 41 ms
51,584 KB
testcase_36 AC 40 ms
52,224 KB
testcase_37 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)
MOD = 10 ** 9 + 7

n = int(input())
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append((b, c))
    edges[b].append((a, c))

dp = [[1] * 30 for _ in range(n)]
ans = 0
bi = [1 << i for i in range(30)]
def dfs(pos, bpos):
    global ans
    for npos, c in edges[pos]:
        if npos == bpos:
            continue
        dfs(npos, pos)
        for i in range(30):
            if c >> i & 1:
                ans += dp[pos][i] * dp[npos][i] * bi[i]
                ans %= MOD
                dp[pos][i] += dp[npos][i]
        
    
dfs(0, -1)
print(ans)
0