結果

問題 No.1441 MErGe
ユーザー りあんりあん
提出日時 2021-03-26 22:55:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 369 ms / 1,000 ms
コード長 1,264 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 211,812 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-05-06 16:50:37
合計ジャッジ時間 10,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 72 ms
5,376 KB
testcase_09 AC 71 ms
5,376 KB
testcase_10 AC 129 ms
5,376 KB
testcase_11 AC 115 ms
5,376 KB
testcase_12 AC 130 ms
5,376 KB
testcase_13 AC 299 ms
7,424 KB
testcase_14 AC 294 ms
7,424 KB
testcase_15 AC 323 ms
7,296 KB
testcase_16 AC 286 ms
7,424 KB
testcase_17 AC 279 ms
7,168 KB
testcase_18 AC 218 ms
6,912 KB
testcase_19 AC 246 ms
7,296 KB
testcase_20 AC 193 ms
6,656 KB
testcase_21 AC 174 ms
5,632 KB
testcase_22 AC 257 ms
5,376 KB
testcase_23 AC 349 ms
7,424 KB
testcase_24 AC 346 ms
7,680 KB
testcase_25 AC 354 ms
7,680 KB
testcase_26 AC 350 ms
7,552 KB
testcase_27 AC 361 ms
7,552 KB
testcase_28 AC 369 ms
7,680 KB
testcase_29 AC 359 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/lazysegtree>
using namespace std;
using P = pair<int, int>;
const int M = 1000000007;
// const int M = 998244353;
const long long LM = 1LL << 60;

int op(int a, int b) {
    return a + b;
}
int e() {
    return 0;
}
int mapping(bool a, int b) {
    return a ? 0 : b;
}
bool composition(bool a, bool b) {
    return a || b;
}
bool id() {
    return false;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n, q;
    cin >> n >> q;
    vector<long long> imos(n + 1);
    for (int i = 0; i < n; ++i) {
        int a;
        cin >> a;
        imos[i + 1] = imos[i] + a;
    }
    atcoder::lazy_segtree<int, op, e, bool, mapping, composition, id> sg(vector<int>(n, 1));
    for (int _ = 0; _ < q; ++_) {
        int t, l, r;
        cin >> t >> l >> r;
        --l;
        if (t == 1) {
            int ll = sg.max_right(0, [&](int x){ return x <= l; });
            int rr = sg.max_right(0, [&](int x){ return x <= r; });
            sg.apply(ll + 1, rr, true);
        }
        else {
            int ll = sg.max_right(0, [&](int x){ return x <= l; });
            int rr = sg.max_right(0, [&](int x){ return x <= r; });
            cout << imos[rr] - imos[ll] << '\n';
        }
    }


    return 0;
}
0