結果
問題 | 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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
53,888 KB |
testcase_01 | AC | 35 ms
53,888 KB |
testcase_02 | AC | 36 ms
53,888 KB |
testcase_03 | AC | 35 ms
53,888 KB |
testcase_04 | AC | 34 ms
54,144 KB |
testcase_05 | AC | 34 ms
54,132 KB |
testcase_06 | AC | 635 ms
364,788 KB |
testcase_07 | AC | 221 ms
121,072 KB |
testcase_08 | AC | 822 ms
207,772 KB |
testcase_09 | AC | 511 ms
118,664 KB |
testcase_10 | AC | 497 ms
118,664 KB |
testcase_11 | AC | 494 ms
118,336 KB |
testcase_12 | AC | 563 ms
119,964 KB |
testcase_13 | AC | 391 ms
119,468 KB |
testcase_14 | AC | 664 ms
366,848 KB |
ソースコード
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()