結果

問題 No.1441 MErGe
ユーザー りあんりあん
提出日時 2021-03-26 22:55:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 386 ms / 1,000 ms
コード長 1,264 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 211,860 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-11-29 00:56:54
合計ジャッジ時間 11,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 9 ms
5,248 KB
testcase_06 AC 9 ms
5,248 KB
testcase_07 AC 8 ms
5,248 KB
testcase_08 AC 75 ms
5,248 KB
testcase_09 AC 75 ms
5,248 KB
testcase_10 AC 139 ms
5,248 KB
testcase_11 AC 121 ms
5,248 KB
testcase_12 AC 133 ms
5,248 KB
testcase_13 AC 313 ms
7,552 KB
testcase_14 AC 324 ms
7,424 KB
testcase_15 AC 334 ms
7,424 KB
testcase_16 AC 306 ms
7,424 KB
testcase_17 AC 299 ms
7,296 KB
testcase_18 AC 226 ms
6,912 KB
testcase_19 AC 255 ms
7,296 KB
testcase_20 AC 202 ms
6,820 KB
testcase_21 AC 178 ms
5,504 KB
testcase_22 AC 268 ms
5,376 KB
testcase_23 AC 376 ms
7,552 KB
testcase_24 AC 374 ms
7,680 KB
testcase_25 AC 386 ms
7,552 KB
testcase_26 AC 379 ms
7,680 KB
testcase_27 AC 377 ms
7,552 KB
testcase_28 AC 383 ms
7,552 KB
testcase_29 AC 381 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