結果

問題 No.1441 MErGe
ユーザー milanis48663220milanis48663220
提出日時 2021-03-26 22:17:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 552 ms / 1,000 ms
コード長 2,455 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 106,080 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-05-06 15:55:17
合計ジャッジ時間 12,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 12 ms
5,376 KB
testcase_08 AC 123 ms
6,272 KB
testcase_09 AC 124 ms
6,144 KB
testcase_10 AC 199 ms
5,888 KB
testcase_11 AC 193 ms
5,376 KB
testcase_12 AC 199 ms
6,272 KB
testcase_13 AC 410 ms
16,000 KB
testcase_14 AC 424 ms
16,000 KB
testcase_15 AC 439 ms
15,616 KB
testcase_16 AC 411 ms
16,128 KB
testcase_17 AC 398 ms
15,616 KB
testcase_18 AC 364 ms
13,056 KB
testcase_19 AC 418 ms
14,848 KB
testcase_20 AC 352 ms
12,672 KB
testcase_21 AC 319 ms
10,880 KB
testcase_22 AC 438 ms
10,240 KB
testcase_23 AC 512 ms
16,768 KB
testcase_24 AC 548 ms
16,640 KB
testcase_25 AC 525 ms
16,768 KB
testcase_26 AC 552 ms
16,640 KB
testcase_27 AC 531 ms
16,640 KB
testcase_28 AC 263 ms
16,640 KB
testcase_29 AC 264 ms
16,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template <typename T>
struct bit{
    int n;
    vector<T> data;

    bit(int n_){
        n = 1;
        while(n < n_) n *= 2;
        data = vector<T>(n+1);
        for(int i = 0; i <= n; i++) data[i] = 0;
    }
    
    T sum(int i){
        T ret = 0;
        while(i > 0){
            ret += data[i];
            i -= i&-i;
        }
        return ret;
    }

    void add(int i, T x){
        while(i <= n){
            data[i] += x;
            i += i&-i;
        }
    }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, q; cin >> n >> q;
    vector<ll> a(n+1), cumsum(n+1);
    for(int i = 1; i <= n; i++) {
        cin >> a[i];
        cumsum[i] = cumsum[i-1]+a[i];
    }
    bit<int> bt(n);
    for(int i = 1; i <= n; i++) bt.add(i, 1);

    auto sect_sum = [&](int l, int r){
        return cumsum[r]-cumsum[l-1];
    };

    auto find_last = [&](int x){
        if(x == 0) return 0;
        int l = 1, r = n;
        if(bt.sum(n) == x) return n;
        while(r-l > 1){
            int c = (l+r)/2;
            if(bt.sum(c) <= x) l = c;
            else r = c;
        }
        return l;
    };

    set<int> st;
    for(int i = 1; i <= n; i++) st.insert(i);

    while(q--){
        int t, l, r; cin >> t >> l >> r;
        if(t == 1){
            int a = find_last(l-1);
            int b = find_last(r);
            auto p = st.lower_bound(a);
            vector<int> to_erase;
            while(p != st.end()){
                if(*p > b) break;
                if(*p > a+1){
                    bt.add(*p, -1);
                    to_erase.push_back(*p);
                }
                p++;
            }
            for(int x : to_erase) st.erase(x);
        }else{
            int a = find_last(l-1);
            int b = find_last(r);
            cout << sect_sum(a+1, b) << endl;
        }
    }
}
0