結果
問題 | No.789 範囲の合計 |
ユーザー | tenten |
提出日時 | 2022-08-24 09:41:14 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 903 ms / 1,000 ms |
コード長 | 2,698 bytes |
コンパイル時間 | 2,606 ms |
コンパイル使用メモリ | 79,272 KB |
実行使用メモリ | 62,272 KB |
最終ジャッジ日時 | 2024-10-11 19:45:23 |
合計ジャッジ時間 | 11,125 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
37,016 KB |
testcase_01 | AC | 53 ms
36,736 KB |
testcase_02 | AC | 843 ms
58,112 KB |
testcase_03 | AC | 366 ms
47,636 KB |
testcase_04 | AC | 804 ms
57,928 KB |
testcase_05 | AC | 753 ms
58,384 KB |
testcase_06 | AC | 758 ms
58,108 KB |
testcase_07 | AC | 344 ms
47,436 KB |
testcase_08 | AC | 579 ms
51,720 KB |
testcase_09 | AC | 560 ms
51,648 KB |
testcase_10 | AC | 903 ms
62,272 KB |
testcase_11 | AC | 806 ms
58,028 KB |
testcase_12 | AC | 782 ms
57,820 KB |
testcase_13 | AC | 53 ms
36,828 KB |
testcase_14 | AC | 55 ms
36,744 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); boolean[] isAdds = new boolean[n]; int[] lefts = new int[n]; int[] rights = new int[n]; TreeMap<Integer, Integer> compress = new TreeMap<>(); for (int i = 0; i < n; i++) { isAdds[i] = (sc.nextInt() == 0); lefts[i] = sc.nextInt(); rights[i] = sc.nextInt(); if (isAdds[i]) { compress.put(lefts[i], null); } else { compress.put(lefts[i], null); compress.put(rights[i], null); } } int idx = 1; for (int x : compress.keySet()) { compress.put(x, idx++); } BinaryIndexedTree bit = new BinaryIndexedTree(idx); long ans = 0; for (int i = 0; i < n; i++) { if (isAdds[i]) { bit.add(compress.get(lefts[i]), rights[i]); } else { ans += bit.getSum(compress.get(lefts[i]), compress.get(rights[i])); } } System.out.println(ans); } } 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; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }