結果

問題 No.876 Range Compress Query
ユーザー nebukuro09nebukuro09
提出日時 2019-09-08 10:58:09
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 2,151 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 105,988 KB
実行使用メモリ 16,124 KB
最終ジャッジ日時 2023-09-04 02:41:42
合計ジャッジ時間 3,080 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 WA -
testcase_08 AC 2 ms
4,380 KB
testcase_09 WA -
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 165 ms
10,040 KB
testcase_12 AC 135 ms
9,704 KB
testcase_13 AC 137 ms
10,380 KB
testcase_14 AC 163 ms
10,108 KB
testcase_15 AC 115 ms
9,892 KB
testcase_16 AC 157 ms
16,124 KB
testcase_17 AC 157 ms
10,068 KB
testcase_18 AC 168 ms
10,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto Q = s[1];
    auto A = readln.split.map!(to!long).array;

    auto B = iota(N-1).map!(i => A[i+1]-A[i]).array;
    auto st = new SegmentTree!(long, (a,b)=>a+b, 0)(N);
    foreach (i; 0..N-1) st.assign(i, B[i] != 0);

    while (Q--) {
        auto x = readln.split.map!(to!int);
        auto t = x[0];
        auto il = x[1] - 1;
        auto ir = x[2] - 1;
        if (t == 1) {
            auto v = x[3].to!long;
            if (il > 0) {
                B[il-1] -= v;
                st.assign(il-1, B[il-1] != 0);
            }
            if (ir < N - 1) {
                B[ir] += v;
                st.assign(ir, B[ir] != 0);
            }
        } else {
            if (il == ir) {
                writeln(1);
            } else {
                writeln(st.query(il, ir-1) + 1);
            }
        }
    }
}

class SegmentTree(T, alias op, T e) {
    T[] table;
    int size;
    int offset;

    this(int n) {
        size = 1;
        while (size <= n) size <<= 1;
        size <<= 1;
        table = new T[](size);
        fill(table, e);
        offset = size / 2;
    }

    void assign(int pos, T val) {
        pos += offset;
        table[pos] = val;
        while (pos > 1) {
            pos /= 2;
            table[pos] = op(table[pos*2], table[pos*2+1]);
        }
    }

    void add(int pos, T val) {
        pos += offset;
        table[pos] += val;
        while (pos > 1) {
            pos /= 2;
            table[pos] = op(table[pos*2], table[pos*2+1]);
        }
    }

    T query(int l, int r) {
        return query(l, r, 1, 0, offset-1);
    }

    T query(int l, int r, int i, int a, int b) {
        if (b < l || r < a) {
            return e;
        } else if (l <= a && b <= r) {
            return table[i];
        } else {
            return op(query(l, r, i*2, a, (a+b)/2), query(l, r, i*2+1, (a+b)/2+1, b));
        }
    }
}
0