結果

問題 No.1441 MErGe
ユーザー tentententen
提出日時 2021-04-14 10:47:23
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,571 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 77,964 KB
実行使用メモリ 88,640 KB
最終ジャッジ日時 2024-06-30 11:26:47
合計ジャッジ時間 14,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,428 KB
testcase_01 AC 53 ms
50,500 KB
testcase_02 AC 53 ms
50,112 KB
testcase_03 AC 117 ms
52,412 KB
testcase_04 AC 115 ms
52,360 KB
testcase_05 AC 160 ms
54,828 KB
testcase_06 AC 156 ms
54,624 KB
testcase_07 AC 158 ms
54,424 KB
testcase_08 AC 468 ms
60,848 KB
testcase_09 AC 465 ms
60,648 KB
testcase_10 AC 661 ms
62,204 KB
testcase_11 AC 657 ms
62,288 KB
testcase_12 AC 636 ms
62,024 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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();
        long[] sums = new long[n + 1];
        for (int i = 1; i <= n; i++) {
            sums[i] = sums[i - 1] + sc.nextInt();
        }
        BinaryIndexedTree bit = new BinaryIndexedTree(n + 2);
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int type = sc.nextInt();
            int left = sc.nextInt();
            int right = sc.nextInt();
            if (type == 1) {
                bit.add(bit.getIdx(left), right - left);
            } else {
                long ans = sums[bit.getIdx(right)] - sums[bit.getIdx(left - 1)];
                sb.append(ans).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;
    }
    
    public int getIdx(int x) {
        int prev = 0;
        while (true) {
            int current = getSum(x);
            if (current == prev) {
                break;
            }
            x += current - prev;
            prev = current;
        }
        return x;
    }
}
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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0