結果

問題 No.1000 Point Add and Array Add
ユーザー htensaihtensai
提出日時 2020-06-11 17:48:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 981 ms / 2,000 ms
コード長 2,326 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 78,868 KB
実行使用メモリ 88,616 KB
最終ジャッジ日時 2024-06-24 03:04:58
合計ジャッジ時間 14,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,304 KB
testcase_01 AC 54 ms
50,260 KB
testcase_02 AC 55 ms
50,164 KB
testcase_03 AC 55 ms
50,176 KB
testcase_04 AC 54 ms
50,136 KB
testcase_05 AC 54 ms
50,004 KB
testcase_06 AC 57 ms
50,068 KB
testcase_07 AC 56 ms
49,880 KB
testcase_08 AC 55 ms
50,036 KB
testcase_09 AC 54 ms
50,252 KB
testcase_10 AC 54 ms
50,100 KB
testcase_11 AC 55 ms
50,336 KB
testcase_12 AC 121 ms
52,360 KB
testcase_13 AC 104 ms
51,892 KB
testcase_14 AC 139 ms
52,592 KB
testcase_15 AC 129 ms
52,476 KB
testcase_16 AC 860 ms
79,080 KB
testcase_17 AC 681 ms
66,744 KB
testcase_18 AC 981 ms
88,616 KB
testcase_19 AC 944 ms
86,784 KB
testcase_20 AC 860 ms
86,760 KB
testcase_21 AC 935 ms
85,700 KB
testcase_22 AC 938 ms
88,288 KB
testcase_23 AC 948 ms
86,828 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]);
		ArrayDeque<Order> stack = new ArrayDeque<>();
		String[] second = br.readLine().split(" ", n);
		for (int i = 1; i <= n; i++) {
		    stack.push(new Order('A', i, Integer.parseInt(second[i - 1])));
		}
		for (int i = 0; i < q; i++) {
		    String[] line = br.readLine().split(" ", 3);
		    stack.push(new Order(line[0].charAt(0), Integer.parseInt(line[1]), Integer.parseInt(line[2])));
		}
		BinaryIndexedTree bit = new BinaryIndexedTree(n + 2);
		long[] ans = new long[n + 1];
		while (stack.size() > 0) {
		    Order x = stack.pop();
		    if (x.type == 'A') {
		        ans[x.left] += x.right * bit.getSum(x.left);
		    } else {
		        bit.add(x.left, 1);
		        bit.add(x.right + 1, -1);
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 1; i <= n; i++) {
		    if (i > 1) {
		        sb.append(" ");
		    }
		    sb.append(ans[i]);
		}
		System.out.println(sb);
	}
	
	static class Order {
	    char type;
	    int left;
	    int right;
	    
	    public Order(char type, int left, int right) {
	        this.type = type;
	        this.left = left;
	        this.right = right;
	    }
	}
}

class BinaryIndexedTree {
    int size;
    long[] tree;
    
    public BinaryIndexedTree(int size) {
        this.size = size;
        tree = new long[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 long get(int idx) {
        return getSum(idx) - getSum(idx - 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;
    }
}
0