結果

問題 No.1441 MErGe
ユーザー milanis48663220milanis48663220
提出日時 2021-03-26 22:01:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,277 bytes
コンパイル時間 1,118 ms
コンパイル使用メモリ 103,736 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-05-06 15:33:35
合計ジャッジ時間 10,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 251 ms
16,768 KB
testcase_29 AC 252 ms
16,768 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;
        if(bt.sum(1) == x) return 1;
        int l = 1, r = n;
        while(r-l > 1){
            int c = (l+r)/2;
            if(bt.sum(c) < x) l = c;
            else r = c;
        }
        return r;
    };

    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);
            while(p != st.end()){
                if(*p > b) break;
                bt.add(*p, -1);
                p++;
            }
        }else{
            int a = find_last(l-1);
            int b = find_last(r);
            cout << sect_sum(a+1, b) << endl;
        }
    }
}
0