結果

問題 No.1843 Tree ANDistance
ユーザー yudedakoyudedako
提出日時 2022-02-28 18:11:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 977 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 165,760 KB
最終ジャッジ日時 2024-07-06 21:24:59
合計ジャッジ時間 43,953 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,069 ms
165,760 KB
testcase_06 AC 1,254 ms
165,376 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 874 ms
155,944 KB
testcase_13 AC 1,115 ms
159,944 KB
testcase_14 AC 176 ms
81,536 KB
testcase_15 AC 190 ms
81,528 KB
testcase_16 AC 147 ms
80,256 KB
testcase_17 AC 149 ms
80,032 KB
testcase_18 AC 113 ms
79,028 KB
testcase_19 AC 156 ms
81,888 KB
testcase_20 AC 144 ms
80,308 KB
testcase_21 AC 67 ms
67,072 KB
testcase_22 AC 66 ms
67,200 KB
testcase_23 AC 69 ms
66,816 KB
testcase_24 AC 70 ms
67,328 KB
testcase_25 AC 71 ms
67,456 KB
testcase_26 AC 68 ms
66,944 KB
testcase_27 AC 68 ms
67,072 KB
testcase_28 AC 1,702 ms
135,420 KB
testcase_29 AC 1,256 ms
116,000 KB
testcase_30 AC 1,290 ms
121,712 KB
testcase_31 TLE -
testcase_32 AC 1,622 ms
139,156 KB
testcase_33 AC 267 ms
102,656 KB
testcase_34 AC 559 ms
133,504 KB
testcase_35 AC 67 ms
67,072 KB
testcase_36 AC 66 ms
66,816 KB
testcase_37 AC 68 ms
67,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue

MOD = 1000000007
n = int(input())
edges = [map(int, input().split()) for _ in range(n - 1)]
graph = [[] for _ in range(n)]
for [a, b, c] in edges:
    graph[a - 1].append([b - 1, c])
    graph[b - 1].append([a - 1, c])
depth = [-1] * n
depth[0] = 0
queue = queue.Queue()
queue.put(0)
while not queue.empty():
    top = queue.get()
    for [to, _] in graph[top]:
        if depth[to] == -1:
            depth[to] = depth[top] + 1
            queue.put(to)
fromLeaf = sorted([i for i in range(n)], key = lambda i: depth[i], reverse = True)
result = 0
for d in range(30):
    onePath = 0
    endPath = [0] * n
    for node in fromLeaf:
        count = 0
        for [child, c] in graph[node]:
            if depth[child] <= depth[node] or ((c >> d) & 1) == 0:
                continue
            onePath += (count + 1) * (endPath[child] + 1)
            count += endPath[child] + 1
        endPath[node] = count
    result += onePath % MOD << d

print(result % MOD)
0