結果

問題 No.778 クリスマスツリー
ユーザー H3PO4H3PO4
提出日時 2021-02-02 10:07:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 644 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 355,680 KB
最終ジャッジ日時 2024-06-29 23:37:49
合計ジャッジ時間 4,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 595 ms
355,680 KB
testcase_07 AC 143 ms
113,152 KB
testcase_08 AC 644 ms
192,860 KB
testcase_09 AC 317 ms
105,216 KB
testcase_10 AC 329 ms
105,268 KB
testcase_11 AC 315 ms
105,728 KB
testcase_12 AC 350 ms
105,156 KB
testcase_13 AC 253 ms
105,724 KB
testcase_14 AC 577 ms
355,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 9)


class Bit:
    """1-indexed"""

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

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i


N = int(input())
A = map(int, input().split())
T = [[] for _ in range(N)]
for i, a in enumerate(A, 1):
    T[a].append(i)

bit = Bit(N)


def dfs(v):
    res = bit.sum(v)
    bit.add(v + 1, 1)
    for x in T[v]:
        res += dfs(x)
    bit.add(v + 1, -1)
    return res


print(dfs(0))
0