結果

問題 No.3198 Monotonic Query
ユーザー karinohito
提出日時 2025-07-11 23:13:43
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 43 ms / 3,000 ms
コード長 635 bytes
コンパイル時間 3,280 ms
コンパイル使用メモリ 276,464 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2025-07-12 10:56:11
合計ジャッジ時間 5,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

using ll =long long;

void solve(){
    ll Q;
    cin>>Q;
    vector<array<ll,2>> B;
    ll cnt=0;
    for(int i=0;i<Q;i++){
        ll t,x;
        cin>>t>>x;
        if(t==1){
            while(B.size()>0&&B.back()[1]<=x)B.pop_back();
            B.push_back({cnt,x});
            cnt++;
        }
        else{
            array<ll,2> P={cnt-x,ll(-1e18)};
            auto p=lower_bound(B.begin(),B.end(),P);
            cout<<(*p)[1]<<"\n";
        }
    }    
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int T=1;
    // cin>>T;
    while(T--)solve();
}
0