結果

問題 No.1843 Tree ANDistance
ユーザー 👑 rin204rin204
提出日時 2022-05-04 18:30:56
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 806 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 231,148 KB
最終ジャッジ日時 2024-07-03 21:32:33
合計ジャッジ時間 16,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 470 ms
124,528 KB
testcase_01 AC 490 ms
124,276 KB
testcase_02 TLE -
testcase_03 AC 914 ms
228,932 KB
testcase_04 AC 479 ms
124,112 KB
testcase_05 AC 415 ms
130,020 KB
testcase_06 AC 429 ms
130,160 KB
testcase_07 AC 463 ms
122,032 KB
testcase_08 AC 457 ms
123,316 KB
testcase_09 AC 871 ms
219,160 KB
testcase_10 AC 843 ms
231,148 KB
testcase_11 AC 477 ms
123,656 KB
testcase_12 AC 376 ms
124,640 KB
testcase_13 AC 438 ms
125,200 KB
testcase_14 AC 93 ms
77,228 KB
testcase_15 AC 93 ms
77,320 KB
testcase_16 AC 85 ms
77,820 KB
testcase_17 AC 83 ms
78,204 KB
testcase_18 AC 54 ms
65,680 KB
testcase_19 AC 85 ms
77,368 KB
testcase_20 AC 80 ms
77,372 KB
testcase_21 AC 37 ms
52,628 KB
testcase_22 AC 37 ms
53,504 KB
testcase_23 AC 37 ms
52,320 KB
testcase_24 AC 36 ms
52,192 KB
testcase_25 AC 37 ms
53,020 KB
testcase_26 AC 36 ms
53,164 KB
testcase_27 AC 36 ms
52,408 KB
testcase_28 AC 340 ms
113,920 KB
testcase_29 AC 235 ms
101,568 KB
testcase_30 AC 419 ms
154,156 KB
testcase_31 AC 711 ms
208,608 KB
testcase_32 AC 333 ms
114,272 KB
testcase_33 AC 141 ms
89,672 KB
testcase_34 AC 237 ms
109,512 KB
testcase_35 AC 36 ms
53,004 KB
testcase_36 AC 36 ms
52,888 KB
testcase_37 AC 36 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
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
        else:
            pass
        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]
            else:
                pass
        
    
dfs(0, -1)
print(ans)
0