結果

問題 No.1471 Sort Queries
ユーザー carrot46carrot46
提出日時 2021-04-10 00:16:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 3,151 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 218,504 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 13:00:46
合計ジャッジ時間 3,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 13 ms
6,944 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 7 ms
6,944 KB
testcase_18 AC 6 ms
6,944 KB
testcase_19 AC 9 ms
6,940 KB
testcase_20 AC 13 ms
6,940 KB
testcase_21 AC 7 ms
6,940 KB
testcase_22 AC 6 ms
6,940 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 16 ms
6,944 KB
testcase_25 AC 24 ms
6,944 KB
testcase_26 AC 18 ms
6,944 KB
testcase_27 AC 19 ms
6,940 KB
testcase_28 AC 19 ms
6,940 KB
testcase_29 AC 17 ms
6,940 KB
testcase_30 AC 16 ms
6,940 KB
testcase_31 AC 25 ms
6,944 KB
testcase_32 AC 26 ms
6,940 KB
testcase_33 AC 29 ms
6,940 KB
testcase_34 AC 30 ms
6,940 KB
testcase_35 AC 30 ms
6,940 KB
testcase_36 AC 27 ms
6,940 KB
testcase_37 AC 27 ms
6,944 KB
testcase_38 AC 28 ms
6,940 KB
testcase_39 AC 28 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace atcoder;
//#pragma GCC optimize("O3")
using namespace std;
#define reps(i,s,n) for(int i = s; i < n; i++)
#define rep(i,n) reps(i,0,n)
#define Rreps(i,n,e) for(int i = n - 1; i >= e; --i)
#define Rrep(i,n) Rreps(i,n,0)
#define ALL(a) a.begin(), a.end()

using ll = long long;
using vec = vector<ll>;
using mat = vector<vec>;

ll N,M,H,W,Q,K,A,B;
string S;
using P = pair<ll, ll>;
using tp = tuple<ll, ll, ll>;
const ll INF = (1LL<<61);

template<class T> bool chmin(T &a, const T b){
    if(a > b) {a = b; return true;}
    else return false;
}
template<class T> bool chmax(T &a, const T b){
    if(a < b) {a = b; return true;}
    else return false;
}
template<class T> void my_printv(std::vector<T> v,bool endline = true){
    if(!v.empty()){
        for(std::size_t i{}; i<v.size()-1; ++i) std::cout<<v[i]<<" ";
        std::cout<<v.back();
    }
    if(endline) std::cout<<std::endl;
}

template <class T> class BIT {
    //T has operator "+=" and can be initialized with 0.
    int n, n_2k;
    vector<T> bitree;
public:
    //make [0, n) BIT
    BIT(int _n) : bitree(_n + 1, 0) {
        n = n_2k = _n;
        while(n_2k & (n_2k - 1)) n_2k &= n_2k - 1;
    }

    //BIT[id] += x
    void add(int id, T x) {
        ++id;
        while (id <= n) {
            bitree[id] += x;
            id += id & -id;
        }
    }

    //sum of BIT[0, id]
    T sum(int id) {
        ++id;
        T temp(0);
        while (id > 0) {
            temp += bitree[id];
            id -= id & -id;
        }
        return temp;
    }

    //sum of BIT[l, r)
    T range_sum(int l, int r) {
        return sum(r-1) - sum(l-1);
    }

    //return i in [0, n]
    //i = argmin_{j} (BIT[0, j] >= x)
    //T should have bool operator '<'
    int lower_bound(T x){
        int id = n_2k;
        T temp(0);
        for(int plus = id; plus; id |= (plus>>=1)){
            if(id <= n && temp + bitree[id] < x) temp += bitree[id];
            else id ^= plus;
        }
        return id;
    }
};

struct query{
    int id, l, r, x, lb, ub;
    query(int a, int b, int c, int d, int e, int f)
    : id(a), l(b), r(c), x(d), lb(e), ub(f){}
    int cen(){return (ub + lb) / 2;}
};

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cin>>N>>Q>>S;
    int _n = N;
    vector<query> qs;
    rep(i, Q){
        int l, r, x;
        cin>>l>>r>>x;
        --l;
        qs.emplace_back(i, l, r, x, -1, _n - 1);
    }
    vec ord(N);
    iota(ALL(ord), 0);
    sort(ALL(ord), [&](int x, int y){ return S[x] < S[y];});
    while(_n){
        auto q = qs.begin();
        BIT<int> bit(N);
        rep(i, N){
            bit.add(ord[i], 1);
            while(q != qs.end() && q->cen() == i){
                (bit.range_sum(q->l, q->r) < q->x ? q->lb : q->ub) = q->cen();
                ++q;
            }
        }
        sort(ALL(qs), [](auto a, auto b){ return a.cen() < b.cen(); });
        //for(auto e : qs) cout<<e.id<<' '<<e.lb<<' '<<e.ub<<endl;
        _n >>= 1;
    }
    sort(ALL(qs), [](auto a, auto b){ return a.id < b.id; });
    for(auto q : qs) cout<<S[ord[q.ub]]<<endl;
}
0