結果

問題 No.778 クリスマスツリー
ユーザー htkbhtkb
提出日時 2019-01-06 14:30:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 946 ms / 2,000 ms
コード長 1,308 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 373,908 KB
最終ジャッジ日時 2024-05-03 03:11:20
合計ジャッジ時間 6,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 43 ms
52,608 KB
testcase_06 AC 677 ms
373,532 KB
testcase_07 AC 259 ms
123,260 KB
testcase_08 AC 946 ms
218,268 KB
testcase_09 AC 546 ms
119,068 KB
testcase_10 AC 560 ms
119,072 KB
testcase_11 AC 553 ms
119,188 KB
testcase_12 AC 604 ms
120,144 KB
testcase_13 AC 393 ms
120,612 KB
testcase_14 AC 686 ms
373,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BinaryIndexedTree(object):
    __slots__ = ["tree"]

    def __init__(self, size: int):
        self.tree = [0]*(size+1)

    def add(self, index: int, value: int):
        tree = self.tree

        while index < len(tree):
            tree[index] += value
            index += index & -index

    def sum(self, index: int):
        tree, result = self.tree, 0

        while index:
            result += tree[index]
            index -= index & -index

        return result


def euler_tour(tree):
    import sys
    sys.setrecursionlimit(10**7)
    edges = [[] for _ in [0]*(len(tree)+1)]
    for origin, destination in enumerate(tree, start=1):
        edges[destination].append(origin)

    subtree_range = [[0, 0] for _ in [0]*(len(tree)+1)]

    def rec(v, index):
        subtree_range[v][0] = index
        for destination in edges[v]:
            index = rec(destination, index+1)
        subtree_range[v][1] = index

        return index + 1

    rec(0, 1)
    return subtree_range


if __name__ == "__main__":
    N = int(input())
    tree = list(map(int, input().split()))
    subtree_range = euler_tour(tree)
    bit = BinaryIndexedTree(2*N-1)
    ans = 0

    for start, end in subtree_range[::-1]:
        ans += bit.sum(end) - bit.sum(start-1)
        bit.add(start, 1)

    print(ans)
0