結果

問題 No.833 かっこいい電車
ユーザー tentententen
提出日時 2022-08-25 09:45:01
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
60,904 KB
testcase_01 AC 46 ms
50,276 KB
testcase_02 AC 46 ms
50,172 KB
testcase_03 AC 47 ms
50,112 KB
testcase_04 AC 50 ms
50,460 KB
testcase_05 AC 48 ms
50,400 KB
testcase_06 AC 50 ms
50,320 KB
testcase_07 AC 52 ms
50,076 KB
testcase_08 AC 48 ms
50,024 KB
testcase_09 AC 47 ms
50,296 KB
testcase_10 AC 431 ms
63,248 KB
testcase_11 AC 495 ms
66,580 KB
testcase_12 AC 299 ms
58,640 KB
testcase_13 AC 248 ms
58,636 KB
testcase_14 AC 463 ms
66,000 KB
testcase_15 AC 312 ms
60,008 KB
testcase_16 AC 262 ms
62,564 KB
testcase_17 AC 235 ms
57,516 KB
testcase_18 AC 442 ms
62,676 KB
testcase_19 AC 293 ms
59,320 KB
testcase_20 AC 174 ms
55,196 KB
testcase_21 AC 419 ms
60,652 KB
testcase_22 AC 365 ms
64,260 KB
testcase_23 AC 310 ms
61,484 KB
testcase_24 AC 334 ms
62,592 KB
testcase_25 AC 471 ms
63,288 KB
testcase_26 AC 301 ms
61,628 KB
testcase_27 AC 390 ms
63,252 KB
testcase_28 AC 330 ms
59,836 KB
testcase_29 AC 373 ms
60,536 KB
testcase_30 AC 393 ms
65,156 KB
testcase_31 AC 388 ms
60,620 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