結果

問題 No.778 クリスマスツリー
ユーザー htkbhtkb
提出日時 2019-01-06 15:33:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 1,579 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 130,576 KB
最終ジャッジ日時 2024-10-14 01:55:41
合計ジャッジ時間 4,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 46 ms
53,760 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 300 ms
130,352 KB
testcase_07 AC 264 ms
124,060 KB
testcase_08 AC 526 ms
121,252 KB
testcase_09 AC 480 ms
118,708 KB
testcase_10 AC 517 ms
118,736 KB
testcase_11 AC 493 ms
118,444 KB
testcase_12 AC 491 ms
118,788 KB
testcase_13 AC 313 ms
118,664 KB
testcase_14 AC 297 ms
130,576 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):
    from collections import deque

    tree_size, euler_tour_size = len(tree), len(tree)*2-1
    edges = [[] for _ in [0]*tree_size]
    for origin, destination in enumerate(tree):
        if destination >= 0:
            edges[destination].append(origin)

    subtree_range = [[0, 0] for _ in [0]*tree_size]
    dq, index = deque([0]), 0
    pop, extend = dq.pop, dq.extend

    while index < euler_tour_size:
        index, v = index+1, pop()
        if not subtree_range[v][0]:
            subtree_range[v][0] = index
        else:
            subtree_range[v][1] = index
            continue

        dq.append(tree[v])
        if edges[v]:
            dq.extend(edges[v])
        else:
            subtree_range[v][1] = index

    return subtree_range


if __name__ == "__main__":
    N = int(input())
    tree = [-1] + 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