結果

問題 No.778 クリスマスツリー
ユーザー ntudantuda
提出日時 2024-07-20 16:15:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 356,660 KB
最終ジャッジ日時 2024-07-20 16:15:11
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
66,816 KB
testcase_01 AC 63 ms
66,816 KB
testcase_02 AC 60 ms
66,688 KB
testcase_03 AC 65 ms
66,688 KB
testcase_04 AC 61 ms
66,688 KB
testcase_05 AC 61 ms
66,816 KB
testcase_06 AC 750 ms
356,160 KB
testcase_07 AC 228 ms
125,312 KB
testcase_08 AC 749 ms
196,456 KB
testcase_09 AC 413 ms
125,952 KB
testcase_10 AC 419 ms
126,080 KB
testcase_11 AC 367 ms
126,336 KB
testcase_12 AC 518 ms
125,184 KB
testcase_13 AC 329 ms
124,288 KB
testcase_14 AC 735 ms
356,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys
sys.setrecursionlimit(200050)

class FenwickTree:
    '''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''

    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n

    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        return self._sum(right) - self._sum(left)

    def _sum(self, r: int) -> typing.Any:
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r

        return s

N = int(input())
A = list(map(int, input().split()))
ft = FenwickTree(N)
E = [[] for _ in range(N)]
for i, a in enumerate(A, start=1):
    E[a].append(i)

ans = 0
def dfs(x):
    global ans
    for y in E[x]:
        ans += ft.sum(0, y)
        ft.add(y, 1)
        dfs(y)
        ft.add(y, -1)

ft.add(0, 1)
dfs(0)
print(ans)
0