結果
| 問題 | No.778 クリスマスツリー | 
| コンテスト | |
| ユーザー |  双六 | 
| 提出日時 | 2020-07-27 01:15:06 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 822 ms / 2,000 ms | 
| コード長 | 1,392 bytes | 
| コンパイル時間 | 313 ms | 
| コンパイル使用メモリ | 82,304 KB | 
| 実行使用メモリ | 366,848 KB | 
| 最終ジャッジ日時 | 2024-06-28 19:48:03 | 
| 合計ジャッジ時間 | 6,034 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 12 | 
ソースコード
import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
def getlist():
	return list(map(int, input().split()))
class SegmentTree(object):
	#N:処理する区間の長さ
	def __init__(self, N):
		self.N0 = 2 ** (N - 1).bit_length()
		self.data = [0] * (2 * self.N0)
	#k番目の値をxに更新
	def update(self, k, x):
		k += self.N0 - 1
		self.data[k] = x
		while k > 0:
			k = (k - 1) // 2
			self.data[k] = self.data[2 * k + 1] + self.data[2 * k + 2]
	#区間[l, r]の和
	def query(self, l, r):
		L = l + self.N0; R = r + self.N0 + 1
		m = 0
		while L < R:
			if R & 1:
				R -= 1
				m += self.data[R - 1]
			if L & 1:
				m += self.data[L - 1]
				L += 1
			L >>= 1; R >>= 1
		return m
class Graph(object):
	def __init__(self):
		self.graph = defaultdict(list)
	def __len__(self):
		return len(self.graph)
	def add_edge(self, a, b):
		self.graph[a].append(b)
ans = 0
def DFS(G, Seg, node):
	Seg.update(node, 1)
	for i in G.graph[node]:
		# if visit[i] != 1:
		# 	visit[i] = 1
		DFS(G, Seg, i)
	global ans
	ans += Seg.query(0, node) - 1
	Seg.update(node, 0)
#処理内容
def main():
	N = int(input())
	A = getlist()
	Seg = SegmentTree(N + 1)
	G = Graph()
	for i in range(N - 1):
		G.add_edge(A[i], i + 1)
	# ans = 0
	DFS(G, Seg, 0)
	print(ans)
if __name__ == '__main__':
	main()
            
            
            
        