結果

問題 No.778 クリスマスツリー
ユーザー noriocnorioc
提出日時 2023-08-29 03:32:44
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 970 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 132,752 KB
最終ジャッジ日時 2024-06-09 20:16:57
合計ジャッジ時間 5,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 44 ms
53,760 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 45 ms
54,016 KB
testcase_05 AC 45 ms
53,632 KB
testcase_06 RE -
testcase_07 AC 244 ms
119,296 KB
testcase_08 RE -
testcase_09 AC 463 ms
114,604 KB
testcase_10 AC 472 ms
114,392 KB
testcase_11 AC 475 ms
115,108 KB
testcase_12 AC 504 ms
116,292 KB
testcase_13 AC 282 ms
113,500 KB
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


class FenwickTree:
    def __init__(self, n):
        self.data = [0] * (n + 10)

    def add(self, p, x):
        assert 0 <= p
        p += 1
        while p < len(self.data):
            self.data[p] += x
            p += p & -p

    def sum(self, p):
        """区間 [0, p] の和"""
        assert 0 <= p
        p += 1
        s = 0
        while p > 0:
            s += self.data[p]
            p -= p & -p
        return s

    def rangesum(self, l, r):
        """区間 [l, r] の和"""
        assert 0 <= l <= r
        s = self.sum(r)
        if l > 0:
            s -= self.sum(l-1)
        return s


N = int(input())
A = list(map(int, input().split()))

adj = defaultdict(list)
for i in range(N-1):
    par = A[i]
    adj[par].append(i+1)


def dfs(v):
    res = ft.sum(v)
    ft.add(v, 1)
    for to in adj[v]:
        res += dfs(to)
    ft.add(v, -1)
    return res


ft = FenwickTree(N)
ans = dfs(0)
print(ans)
0