結果
問題 | No.778 クリスマスツリー |
ユーザー | tenten |
提出日時 | 2021-01-28 16:27:54 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,567 bytes |
コンパイル時間 | 2,676 ms |
コンパイル使用メモリ | 79,384 KB |
実行使用メモリ | 129,752 KB |
最終ジャッジ日時 | 2024-06-26 00:35:25 |
合計ジャッジ時間 | 16,683 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
54,024 KB |
testcase_01 | AC | 136 ms
53,564 KB |
testcase_02 | AC | 138 ms
53,516 KB |
testcase_03 | AC | 138 ms
53,620 KB |
testcase_04 | AC | 139 ms
53,596 KB |
testcase_05 | AC | 139 ms
53,840 KB |
testcase_06 | AC | 1,089 ms
129,040 KB |
testcase_07 | AC | 1,000 ms
82,280 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1,465 ms
85,136 KB |
testcase_10 | AC | 1,479 ms
85,724 KB |
testcase_11 | AC | 1,455 ms
85,388 KB |
testcase_12 | AC | 1,410 ms
86,232 KB |
testcase_13 | AC | 1,033 ms
86,620 KB |
testcase_14 | WA | - |
ソースコード
import java.util.*; public class Main { static BinaryIndexedTree bit; static ArrayList<ArrayList<Integer>> graph = new ArrayList<>(); public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for (int i = 0; i < n; i++) { graph.add(new ArrayList<>()); } for (int i = 1; i < n; i++) { graph.get(sc.nextInt()).add(i); } bit = new BinaryIndexedTree(n + 1); System.out.println(search(0)); } static int search(int idx) { int sum = bit.getSum(idx + 1); bit.add(idx + 1, 1); for (int x : graph.get(idx)) { sum += search(x); } bit.add(idx + 1, -1); return sum; } } class BinaryIndexedTree { int size; int[] tree; public BinaryIndexedTree(int size) { this.size = size; tree = new int[size]; } public void add(int idx, int value) { int mask = 1; while (idx < size) { if ((idx & mask) != 0) { tree[idx] += value; idx += mask; } mask <<= 1; } } public int getSum(int from, int to) { return getSum(to) - getSum(from - 1); } public int getSum(int x) { int mask = 1; int ans = 0; while (x > 0) { if ((x & mask) != 0) { ans += tree[x]; x -= mask; } mask <<= 1; } return ans; } }