結果

問題 No.778 クリスマスツリー
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-15 21:58:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 933 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 370,292 KB
最終ジャッジ日時 2024-12-14 03:29:37
合計ジャッジ時間 6,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,824 KB
testcase_01 AC 41 ms
53,492 KB
testcase_02 AC 40 ms
52,588 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 37 ms
53,268 KB
testcase_05 AC 38 ms
53,820 KB
testcase_06 AC 659 ms
370,292 KB
testcase_07 AC 235 ms
124,808 KB
testcase_08 AC 933 ms
226,064 KB
testcase_09 AC 485 ms
130,504 KB
testcase_10 AC 485 ms
130,236 KB
testcase_11 AC 472 ms
129,848 KB
testcase_12 AC 450 ms
129,716 KB
testcase_13 AC 284 ms
129,860 KB
testcase_14 AC 606 ms
306,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
 
    def _add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i
            
    def _sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
        
n=int(input())
rin=[[] for i in range(n)]
a=list(map(int,input().split()))

for i in range(1,n):
    rin[a[i-1]].append(i)
    rin[i].append(a[i-1])

bit=Bit(n+2)

import sys
sys.setrecursionlimit(10**6)
kukan = [[0,0] for i in range(n)]
ind=1
def  cal(x,pre):
    global ind
    kukan[x][0] = ind
    if len(rin[x]) == 1 and x!= pre:
        kukan[x][1] = ind
        ind += 1
        return
    ind += 1
    for i in rin[x]:
        if i != pre:
            cal(i,x)
    
    kukan[x][1] = ind-1

cal(0,0)
ans = 0
for x in range(n-1,-1,-1):
    l,r=kukan[x][0],kukan[x][1]
    ans += bit._sum(r) - bit._sum(l-1)
    bit._add(l,1)


print(ans)
0