結果

問題 No.833 かっこいい電車
ユーザー tentententen
提出日時 2022-08-25 09:45:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 2,465 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 79,320 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-04-20 19:43:21
合計ジャッジ時間 14,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 443 ms
50,648 KB
testcase_01 AC 49 ms
36,960 KB
testcase_02 AC 48 ms
36,928 KB
testcase_03 AC 49 ms
37,080 KB
testcase_04 AC 46 ms
36,924 KB
testcase_05 AC 46 ms
36,856 KB
testcase_06 AC 50 ms
36,880 KB
testcase_07 AC 50 ms
36,868 KB
testcase_08 AC 46 ms
36,972 KB
testcase_09 AC 48 ms
36,988 KB
testcase_10 AC 447 ms
51,004 KB
testcase_11 AC 566 ms
53,768 KB
testcase_12 AC 329 ms
48,560 KB
testcase_13 AC 253 ms
45,952 KB
testcase_14 AC 525 ms
53,712 KB
testcase_15 AC 352 ms
49,484 KB
testcase_16 AC 296 ms
50,312 KB
testcase_17 AC 261 ms
47,308 KB
testcase_18 AC 527 ms
52,252 KB
testcase_19 AC 309 ms
51,508 KB
testcase_20 AC 184 ms
43,212 KB
testcase_21 AC 465 ms
49,732 KB
testcase_22 AC 417 ms
54,436 KB
testcase_23 AC 321 ms
50,520 KB
testcase_24 AC 384 ms
52,812 KB
testcase_25 AC 489 ms
51,720 KB
testcase_26 AC 315 ms
50,192 KB
testcase_27 AC 438 ms
51,580 KB
testcase_28 AC 376 ms
48,860 KB
testcase_29 AC 411 ms
50,632 KB
testcase_30 AC 437 ms
54,468 KB
testcase_31 AC 444 ms
50,468 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();
        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