Submission #886336

#TimeUsernameProblemLanguageResultExecution timeMemory
886336KutanAbracadabra (CEOI22_abracadabra)C++14
100 / 100
507 ms52336 KiB
// Cao Quang Hung
#include <cassert>
#include <cctype>
#include <cerrno>
#include <cfloat>
#include <ciso646>
#include <climits>
#include <clocale>
#include <cmath>
#include <csetjmp>
#include <csignal>
#include <cstdarg>
#include <cstddef>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <ccomplex>
#include <cfenv>
#include <cinttypes>
#include <cstdbool>
#include <cstdint>
#include <ctgmath>
#include <cwchar>
#include <cwctype>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>
#include <array>
#include <atomic>
#include <chrono>
#include <condition_variable>
#include <forward_list>
#include <future>
#include <initializer_list>
#include <mutex>
#include <random>
#include <ratio>
#include <regex>
#include <scoped_allocator>
#include <system_error>
#include <thread>
#include <tuple>
#include <typeindex>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>

using namespace std;
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define pii pair<int,int>
#define pll pair<long long , long long>
#define vi vector<int>
#define vpii vector<pii>
#define SZ(x) ((int)(x.size()))
#define fi first
#define se second
#define IN(x,y) ((y).find((x))!=(y).end())
#define ALL(t) t.begin(),t.end()
#define FOREACH(i,t) for (typeof(t.begin()) i=t.begin(); i!=t.end(); i++)
#define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
#define REPD(i,a,b) for(int (i)=(a); (i)>=(b);--i)
#define FOR(i, n) for (int (i) = 0; (i) < (n); ++(i))
#define dem(x) __builtin_popcount(x)
#define Mask(x) (1LL << (x))
#define BIT(x, i) ((x) >> (i) & 1)
#define ln '\n'
#define io_faster ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
///mt19937 rnd(time(0));

const int INF = 1e9 , mod = 1e9 + 7;

template <class T1, class T2>
inline T1 mul(T1& x, const T2 &k){ return x = (1LL * x * k) % mod; }

template <class T1 , class T2>
inline T1 pw(T1 x, T2 k){T1 res = 1; for (; k ; k >>= 1){ if (k & 1) mul(res, x); mul(x, x); } return res;}

template <class T>
inline bool minimize(T &x, const T &y){ if (x > y){x = y; return 1;} return 0; }

template <class T>
inline bool maximize(T &x, const T &y){ if (x < y){x = y; return 1;} return 0; }

template <class T>
inline void add(T &x , const T &y){ if ((x += y) >= mod) x -= mod; }

template <class T>
inline T product (const T &x , const T &y) { return 1LL * x * y % mod; }

#define PROB "a"
void file(){
    if(fopen(PROB".inp", "r")){
        freopen(PROB".inp","r",stdin);
        freopen(PROB".out","w",stdout);
    }
}
void sinh_(){
//    srand(time(0));
//    freopen(PROB".inp" , "w" , stdout);
//    int n;
}

typedef long long ll;
typedef double db;
const int N = 2e5 + 5;
const int maxQ = 1e6 + 5;
int n, q;
int a[N], b[N], ans[maxQ];
int nxt[N];

pair<pii, int> Query[maxQ];
void readip(){
    cin >> n >> q;
    REP(i, 1, n) cin >> a[i];

    REP(i, 1, q) cin >> Query[i].first.fi >> Query[i].first.se, Query[i].second = i;
    sort(Query + 1, Query + q + 1);


    vi st;
    REPD(i, n, 1) {
        while(!st.empty() && a[st.back()] < a[i]) st.pop_back();
        if (st.empty()) nxt[i] = n + 1;
        else nxt[i] = st.back();
        st.eb(i);
    }
}

namespace sub1{
    bool shuff() {
        int lpt = 1, rpt = n / 2 + 1;
        int cnt = 0;
        for (; lpt <= n / 2; ++lpt) {
            while(rpt <= n && a[rpt] < a[lpt]) 
                b[++cnt] = a[rpt++];
            b[++cnt] = a[lpt];
        }
        while(rpt <= n) b[++cnt] = a[rpt++];

        bool res = 0;
        REP(i, 1, n) if (a[i] != b[i]) {
            res = 1;
            a[i] = b[i];
        }
        return res;
    }

    void solve() {
        int cnt = 0, qid = 1;
        do {
            while(qid <= q && Query[qid].first.fi == cnt) {
                ans[Query[qid].se] = a[Query[qid].first.se];
                ++qid;
            }
            ++cnt;
            if (cnt > Query[q].first.fi) break;
        } while(shuff());
        while(qid <= q) ans[Query[qid].se] = a[Query[qid].fi.se], ++qid;
        REP(i, 1, q) cout << ans[i] << ln;
    }
};

struct Data{
    int val, l, r;
    Data(int _val = 0, int _l = 0, int _r = 0) {
        val = _val, l = _l, r = _r;
    }
    bool operator < (const Data other) const {
        return val < other.val;
    }
};    set<Data> s;


namespace sub2{
    void solve() {
        int i = 1;
        while(i <= n) s.insert(Data(a[i], i, nxt[i] - 1)), i = nxt[i];

        int rpt = n, total_size = n, cnt = 0;
        while(cnt < Query[1].fi.fi) {
            while(!s.empty()) {
                auto it = s.end(); --it;
                if (total_size - (it->r - it->l + 1) >= n / 2) {
                    REPD(i, it->r, it->l) b[rpt--] = a[i];
                    total_size -= (it->r - it->l + 1);
                    s.erase(it);
                }
                else break;
            }

            if (total_size == n / 2) break;
            ++cnt;

            auto it = s.end(); --it;
            int v = it->val, l = it->l, r = it->r;
            s.erase(it);

            int pref_size = total_size - (r - l + 1);
            int lef_size = n / 2 - pref_size;
            s.insert(Data(v, l, l + lef_size - 1));

            int i = l + lef_size;
            while(i <= r) {
                s.insert(Data(a[i], i, min(r, nxt[i] - 1)));
                i = nxt[i];
            }
        }   
        while(!s.empty()) {
            auto it = s.end(); --it;
            REPD(i, it->r, it->l) b[rpt--] = a[i];
            s.erase(it);
        }

        REP(i, 1, q) ans[Query[i].se] = b[Query[i].fi.se];
        REP(i, 1, q) cout << ans[i] << ln;
    }
};

namespace subfull{
    struct segtree{
        int it[N << 2];
        void upd(int i, int val, int id = 1, int l = 1, int r = n) {
            if (l == r) {
                it[id] = val;
                return;
            }
            int mid = (l + r) >> 1;
            if (i <= mid) upd(i, val, id << 1, l, mid);
            else upd(i, val, id << 1 | 1, mid + 1, r);
            it[id] = it[id << 1] + it[id << 1 | 1];
        }

        int get(int u, int v, int id = 1, int l = 1, int r = n) {
            if (u <= l && r <= v) return it[id];
            int mid = (l + r) >> 1;
            int res(0);
            if (u <= mid) res += get(u, v, id << 1, l, mid);
            if (v > mid) res += get(u, v, id << 1 | 1, mid + 1, r);
            return res;
        }

        int walk(int val) {
            int id = 1, l = 1, r = n, res = n;
            while(1) {
                if (l == r) return (it[id] >= val ? l : res);
                int mid = (l + r) >> 1;
                if (it[id << 1] >= val) {
                    res = mid;
                    r = mid;
                    id = id << 1;
                }
                else {
                    val -= it[id << 1];
                    l = mid + 1;
                    id = id << 1 | 1;
                }
            }
        }
    } ST;

    int curL[N], curR[N];

    void solve() {
        for (int i = 1; i <= n; i = nxt[i]) {
            s.insert(Data(a[i], i, nxt[i] - 1));
            ST.upd(a[i], nxt[i] - i);

            curL[a[i]] = i;
            curR[a[i]] = nxt[i] - 1;
        }

        int qid = 1, rpt = n, total_size = n;
        while(qid <= q && Query[qid].fi.fi == 0) {
            ans[Query[qid].se] = a[Query[qid].fi.se];
            ++qid;
        }

        REP(Time, 1, n) {
            while(!s.empty()) {
                auto it = s.end(); --it;
                if (total_size - (it->r - it->l + 1) >= n / 2) {
                    REPD(i, it->r, it->l) b[rpt--] = a[i];
                    total_size -= (it->r - it->l + 1);
                    ST.upd(it -> val, 0);
                    s.erase(it);
                }
                else break;
            }
            if (total_size == n / 2) break;

            auto it = s.end(); --it;
            int v = it->val, l = it->l, r = it->r;
            s.erase(it);
            ST.upd(v, 0);

            int pref_size = total_size - (r - l + 1);
            int lef_size = n / 2 - pref_size;
            s.insert(Data(v, l, l + lef_size - 1));
            ST.upd(v, lef_size);
            curL[v] = l, curR[v] = l + lef_size - 1;

            int i = l + lef_size;
            while(i <= r) {
                s.insert(Data(a[i], i, min(r, nxt[i] - 1)));
                ST.upd(a[i], min(r, nxt[i] - 1) - i + 1);
                curL[a[i]] = i, curR[a[i]] = min(r, nxt[i] - 1);
                i = nxt[i];
            }

            while(qid <= q && Query[qid].first.fi == Time) {
                if (Query[qid].first.se > total_size) {
                    // cout << "wtf " << Query[qid].first.se << ' ' << rpt << ln; 
                    ans[Query[qid].second] = b[Query[qid].first.se];
                }
                else {
                    int val = ST.walk(Query[qid].first.se);
                    int prefsize = (val == 1 ? 0 : ST.get(1, val - 1));
                    ans[Query[qid].second] = a[curL[val] + Query[qid].first.se - prefsize - 1];
                }
                ++qid;
            }
        }   

        while(!s.empty()) {
            auto it = s.end(); --it;
            REPD(i, it->r, it->l) b[rpt--] = a[i];
            s.erase(it);
        }

        while(qid <= q) {
            ans[Query[qid].se] = b[Query[qid].first.se];
            ++qid;
        }
        REP(i, 1, q) cout << ans[i] << ln;
    }
};

void solve(){   
    // if (n <= 1000) {
    //     sub1::solve();
    //     return;
    // }
    // if (Query[1].fi.fi == Query[q].fi.fi) {
    //     sub2::solve();
    //     return;
    // }
    subfull::solve();
}

int main(){
    sinh_();
    io_faster
    file();
    int t = 1;
//    cin >> t;
    while (t--){
        readip();
        solve();
    }
}

Compilation message (stderr)

Main.cpp: In function 'void readip()':
Main.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
Main.cpp:146:5: note: in expansion of macro 'REP'
  146 |     REP(i, 1, n) cin >> a[i];
      |     ^~~
Main.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
Main.cpp:148:5: note: in expansion of macro 'REP'
  148 |     REP(i, 1, q) cin >> Query[i].first.fi >> Query[i].first.se, Query[i].second = i;
      |     ^~~
Main.cpp:93:29: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   93 | #define REPD(i,a,b) for(int (i)=(a); (i)>=(b);--i)
      |                             ^
Main.cpp:153:5: note: in expansion of macro 'REPD'
  153 |     REPD(i, n, 1) {
      |     ^~~~
Main.cpp: In function 'bool sub1::shuff()':
Main.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
Main.cpp:173:9: note: in expansion of macro 'REP'
  173 |         REP(i, 1, n) if (a[i] != b[i]) {
      |         ^~~
Main.cpp: In function 'void sub1::solve()':
Main.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
Main.cpp:191:9: note: in expansion of macro 'REP'
  191 |         REP(i, 1, q) cout << ans[i] << ln;
      |         ^~~
Main.cpp: In function 'void sub2::solve()':
Main.cpp:93:29: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   93 | #define REPD(i,a,b) for(int (i)=(a); (i)>=(b);--i)
      |                             ^
Main.cpp:216:21: note: in expansion of macro 'REPD'
  216 |                     REPD(i, it->r, it->l) b[rpt--] = a[i];
      |                     ^~~~
Main.cpp:93:29: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   93 | #define REPD(i,a,b) for(int (i)=(a); (i)>=(b);--i)
      |                             ^
Main.cpp:242:13: note: in expansion of macro 'REPD'
  242 |             REPD(i, it->r, it->l) b[rpt--] = a[i];
      |             ^~~~
Main.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
Main.cpp:246:9: note: in expansion of macro 'REP'
  246 |         REP(i, 1, q) ans[Query[i].se] = b[Query[i].fi.se];
      |         ^~~
Main.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
Main.cpp:247:9: note: in expansion of macro 'REP'
  247 |         REP(i, 1, q) cout << ans[i] << ln;
      |         ^~~
Main.cpp: In function 'void subfull::solve()':
Main.cpp:92:28: warning: unnecessary parentheses in declaration of 'Time' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
Main.cpp:310:9: note: in expansion of macro 'REP'
  310 |         REP(Time, 1, n) {
      |         ^~~
Main.cpp:93:29: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   93 | #define REPD(i,a,b) for(int (i)=(a); (i)>=(b);--i)
      |                             ^
Main.cpp:314:21: note: in expansion of macro 'REPD'
  314 |                     REPD(i, it->r, it->l) b[rpt--] = a[i];
      |                     ^~~~
Main.cpp:93:29: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   93 | #define REPD(i,a,b) for(int (i)=(a); (i)>=(b);--i)
      |                             ^
Main.cpp:358:13: note: in expansion of macro 'REPD'
  358 |             REPD(i, it->r, it->l) b[rpt--] = a[i];
      |             ^~~~
Main.cpp:92:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   92 | #define REP(i,a,b) for(int (i)=(a);(i)<=(b);++i)
      |                            ^
Main.cpp:366:9: note: in expansion of macro 'REP'
  366 |         REP(i, 1, q) cout << ans[i] << ln;
      |         ^~~
Main.cpp: In function 'void file()':
Main.cpp:125:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  125 |         freopen(PROB".inp","r",stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
Main.cpp:126:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  126 |         freopen(PROB".out","w",stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...