結果

問題 No.876 Range Compress Query
ユーザー htensaihtensai
提出日時 2020-06-12 12:41:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,346 bytes
コンパイル時間 2,699 ms
コンパイル使用メモリ 78,192 KB
実行使用メモリ 65,716 KB
最終ジャッジ日時 2024-06-24 03:47:16
合計ジャッジ時間 8,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,428 KB
testcase_01 WA -
testcase_02 AC 56 ms
50,300 KB
testcase_03 WA -
testcase_04 AC 61 ms
50,272 KB
testcase_05 AC 59 ms
50,456 KB
testcase_06 AC 91 ms
51,476 KB
testcase_07 WA -
testcase_08 AC 77 ms
51,204 KB
testcase_09 WA -
testcase_10 AC 82 ms
51,136 KB
testcase_11 AC 506 ms
62,596 KB
testcase_12 AC 513 ms
62,612 KB
testcase_13 AC 471 ms
62,676 KB
testcase_14 AC 491 ms
62,720 KB
testcase_15 AC 403 ms
62,248 KB
testcase_16 AC 513 ms
65,680 KB
testcase_17 AC 504 ms
65,716 KB
testcase_18 AC 517 ms
62,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 2);
		int n = Integer.parseInt(first[0]);
		int q = Integer.parseInt(first[1]);
		BinaryIndexedTree bit = new BinaryIndexedTree(n + 1);
		long[] arr = new long[n + 2];
		String[] second = br.readLine().split(" ", n);
		int prev = Integer.parseInt(second[0]);
		for (int i = 1; i < n; i++) {
		    int x = Integer.parseInt(second[i]);
		    arr[i] = x - prev;
		    prev = x;
		    if (arr[i] != 0) {
		        bit.add(i, 1);
		    }
		}
		arr[n]  = prev;
		bit.add(n, 1);
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    String[] line = br.readLine().split(" ");
		    int type = Integer.parseInt(line[0]);
		    int left = Integer.parseInt(line[1]);
		    int right = Integer.parseInt(line[2]);
		    if (type == 1) {
		        int x = Integer.parseInt(line[3]);
		        if (arr[left - 1] == 0 && left > 1) {
		            bit.add(left - 1, 1);
		        }
		        arr[left - 1] -= x;
		        if (arr[left - 1] == 0 && left > 1) {
		            bit.add(left - 1, -1);
		        }
		        if (arr[right] == 0) {
		            bit.add(right, 1);
		        }
		        arr[right] += x;
		        if (arr[right] == 0) {
		            bit.add(right, -1);
		        }
		    } else {
		        sb.append(bit.getSum(left, right)).append("\n");
		    }
		}
		System.out.print(sb);
	}
}

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;
    }
}
0