結果

問題 No.778 クリスマスツリー
ユーザー flippergoflippergo
提出日時 2021-02-28 14:03:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 338,324 KB
最終ジャッジ日時 2024-10-02 18:13:18
合計ジャッジ時間 5,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 37 ms
51,944 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 738 ms
338,324 KB
testcase_07 AC 209 ms
140,504 KB
testcase_08 AC 764 ms
189,992 KB
testcase_09 AC 475 ms
118,008 KB
testcase_10 AC 468 ms
118,036 KB
testcase_11 AC 464 ms
118,364 KB
testcase_12 AC 521 ms
121,280 KB
testcase_13 AC 234 ms
120,872 KB
testcase_14 AC 678 ms
337,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(200010)
N = int(input())
A = list(map(int,input().split()))
A.insert(0,0)
G = {i:[] for i in range(1,N+1)}
for i in range(1,N):
    a = A[i]+1
    G[a].append(i+1)
k = 0
while 2**k<N:
    k += 1
K = 2**k
B = [0 for _ in range(K+1)]
def update(i,x):
    j = i
    while j<=K:
        B[j] += x
        j += j&(-j)
def csum(i):
    j = i
    tot = 0
    while j>0:
        tot += B[j]
        j -= j&(-j)
    return tot
cnt = 0
def dfs(i):
    global cnt
    cnt += csum(i)
    update(i,1)
    for j in G[i]:
        dfs(j)
        update(j,-1)
dfs(1)
print(cnt)
0