結果

問題 No.876 Range Compress Query
ユーザー ooaiuooaiu
提出日時 2024-11-14 12:57:59
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,312 bytes
コンパイル時間 3,854 ms
コンパイル使用メモリ 281,124 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 12:58:07
合計ジャッジ時間 6,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 128 ms
6,816 KB
testcase_12 AC 105 ms
6,820 KB
testcase_13 AC 105 ms
6,816 KB
testcase_14 AC 126 ms
6,816 KB
testcase_15 AC 86 ms
6,820 KB
testcase_16 AC 120 ms
6,820 KB
testcase_17 AC 122 ms
6,820 KB
testcase_18 AC 127 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/segtree>
int op(int a, int b) {
    return a + b;
}
int e() {
    return 0;
}
void solve() {
    int N, Q;
    cin >> N >> Q;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    vector<long long> diff(N);
    for (int i = 1; i < N; i++) diff[i] = A[i] - A[i - 1];
    vector<int> B(N);
    for (int i = 1; i < N; i++) {
        B[i] = diff[i] != 0;
    }
    atcoder::segtree<int, op, e> seg(B);

    auto Update = [&](int i) -> void {
        if (diff[i] == 0)
            seg.set(i, 0);
        else
            seg.set(i, 1);
    };
    while (Q--) {
        int t;
        cin >> t;
        int l, r;
        cin >> l >> r;
        if (t == 1) {
            int x;
            cin >> x;
            l--;
            if (l != 0) {
                diff[l] += x;
                Update(l);
            }
            if (r != N) {
                diff[r] -= x;
                Update(r);
            }
        } else {
            cout << seg.prod(l, r) + 1 << endl;
        }
    }
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0