結果

問題 No.833 かっこいい電車
ユーザー tenten
提出日時 2022-08-25 09:45:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 2,465 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 78,716 KB
実行使用メモリ 66,580 KB
最終ジャッジ日時 2024-10-12 17:38:03
合計ジャッジ時間 13,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

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();
        int q = sc.nextInt();
        BinaryIndexedTree bit = new BinaryIndexedTree(n + 1);
        TreeSet<Integer> tops = new TreeSet<>();
        for (int i = 1; i <= n; i++) {
            bit.add(i, sc.nextInt());
            tops.add(i);
        }
        tops.add(n + 1);
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int type = sc.nextInt();
            int x = sc.nextInt();
            if (type == 1) {
                tops.remove(x + 1);
            } else if (type == 2) {
                tops.add(x + 1);
            } else if (type == 3) {
                bit.add(x, 1);
            } else {
                sb.append(bit.getSum(tops.floor(x), tops.higher(x) - 1)).append("\n");
            }
        }
        System.out.print(sb);
    }
}
class BinaryIndexedTree {
    int size;
    long[] tree;
    
    public BinaryIndexedTree(int size) {
        this.size = size;
        tree = new long[size];
    }
    
    public void add(int idx, long value) {
        int mask = 1;
        while (idx < size) {
            if ((idx & mask) != 0) {
                tree[idx] += value;
                idx += mask;
            }
            mask <<= 1;
        }
    }
    
    public long getSum(int from, int to) {
        return getSum(to) - getSum(from - 1);
    }
    
    public long getSum(int x) {
        int mask = 1;
        long 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