結果

問題 No.778 クリスマスツリー
ユーザー H3PO4H3PO4
提出日時 2021-02-02 10:06:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,650 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 81,184 KB
最終ジャッジ日時 2024-06-29 23:37:41
合計ジャッジ時間 13,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 1,344 ms
75,064 KB
testcase_07 AC 1,156 ms
35,156 KB
testcase_08 AC 1,650 ms
56,704 KB
testcase_09 AC 1,349 ms
45,084 KB
testcase_10 AC 1,367 ms
45,088 KB
testcase_11 AC 1,358 ms
45,348 KB
testcase_12 AC 1,355 ms
46,220 KB
testcase_13 AC 1,153 ms
46,232 KB
testcase_14 AC 1,375 ms
81,184 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