結果

問題 No.876 Range Compress Query
ユーザー tentententen
提出日時 2022-08-27 11:52:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 3,474 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 78,100 KB
実行使用メモリ 52,024 KB
最終ジャッジ日時 2024-04-22 11:04:25
合計ジャッジ時間 8,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,904 KB
testcase_01 AC 86 ms
37,924 KB
testcase_02 AC 49 ms
36,872 KB
testcase_03 AC 88 ms
38,152 KB
testcase_04 AC 56 ms
36,996 KB
testcase_05 AC 54 ms
36,620 KB
testcase_06 AC 89 ms
38,272 KB
testcase_07 AC 75 ms
38,428 KB
testcase_08 AC 84 ms
38,048 KB
testcase_09 AC 71 ms
38,048 KB
testcase_10 AC 82 ms
38,372 KB
testcase_11 AC 488 ms
50,332 KB
testcase_12 AC 457 ms
48,856 KB
testcase_13 AC 479 ms
49,300 KB
testcase_14 AC 512 ms
49,308 KB
testcase_15 AC 456 ms
49,384 KB
testcase_16 AC 514 ms
50,996 KB
testcase_17 AC 510 ms
51,076 KB
testcase_18 AC 571 ms
52,024 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 values = new BinaryIndexedTree(n + 2);
        for (int i = 1; i <= n; i++) {
            int x = sc.nextInt();
            values.add(i, x);
            values.add(i + 1, -x);
        }
        BinaryIndexedTree counts = new BinaryIndexedTree(n + 1);
        for (int i = 1; i < n; i++) {
            if (values.getSum(i) != values.getSum(i + 1)) {
                counts.add(i, 1);
            }
        }
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            if (sc.nextInt() == 1) {
                int left = sc.nextInt();
                int right = sc.nextInt();
                int x = sc.nextInt();
                if (left > 1) {
                    long lPrevMinus = values.getSum(left - 1);
                    long lPrev = values.getSum(left);
                    if (lPrevMinus == lPrev) {
                        counts.add(left - 1, 1);
                    } else if (lPrevMinus - lPrev == x) {
                        counts.add(left - 1, -1);
                    }
                }
                if (right < n) {
                    long rPrev = values.getSum(right);
                    long rPrevPlus = values.getSum(right + 1);
                    if (rPrev == rPrevPlus) {
                        counts.add(right, 1);
                    } else if (rPrevPlus - rPrev == x) {
                        counts.add(right, -1);
                    }
                }
                values.add(left, x);
                values.add(right + 1, -x);
            } else {
                int left = sc.nextInt();
                int right = sc.nextInt();
                sb.append(counts.getSum(left, right - 1) + 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