結果

問題 No.789 範囲の合計
ユーザー tentententen
提出日時 2022-08-24 09:37:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,621 bytes
コンパイル時間 2,640 ms
コンパイル使用メモリ 78,836 KB
実行使用メモリ 53,408 KB
最終ジャッジ日時 2024-04-20 00:47:45
合計ジャッジ時間 8,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,936 KB
testcase_01 AC 52 ms
36,784 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 54 ms
37,056 KB
testcase_14 AC 53 ms
36,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
            }
        }
        int idx = 1;
        for (int x : compress.keySet()) {
            compress.put(x, idx++);
        }
        BinaryIndexedTree bit = new BinaryIndexedTree(idx);
        int 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.ceilingEntry(lefts[i]).getValue(), compress.floorEntry(rights[i]).getValue());
            }
        }
        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();
    }
}
0