結果
問題 | No.789 範囲の合計 |
ユーザー | htensai |
提出日時 | 2020-06-11 09:45:28 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,863 bytes |
コンパイル時間 | 2,241 ms |
コンパイル使用メモリ | 79,272 KB |
実行使用メモリ | 75,428 KB |
最終ジャッジ日時 | 2024-06-24 02:51:32 |
合計ジャッジ時間 | 17,560 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
54,160 KB |
testcase_01 | AC | 134 ms
54,224 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 992 ms
69,484 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 133 ms
54,096 KB |
testcase_14 | AC | 132 ms
53,944 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] types = new int[n]; int[] lefts = new int[n]; int[] rights = new int[n]; TreeMap<Integer, Integer> map = new TreeMap<>(); for (int i = 0; i < n; i++) { types[i] = sc.nextInt(); lefts[i] = sc.nextInt(); rights[i] = sc.nextInt(); if (types[i] == 0) { map.put(lefts[i], 0); } } int idx = 1; for (int x : map.keySet()) { map.put(x, idx); idx++; } BinaryIndexedTree bit = new BinaryIndexedTree(idx); long total = 0; for (int i = 0; i < n; i++) { if (types[i] == 0) { bit.add(map.get(lefts[i]), rights[i]); } else { if (map.firstKey() > rights[i] || map.lastKey() < lefts[i]) { continue; } int min = map.ceilingEntry(lefts[i]).getValue(); int max = map.floorEntry(rights[i]).getValue(); total += bit.getSum(min, max); } } System.out.println(total); } } 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; } }