結果

問題 No.2809 Sort Query
ユーザー k82bk82b
提出日時 2024-07-12 23:47:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,973 bytes
コンパイル時間 3,522 ms
コンパイル使用メモリ 220,368 KB
実行使用メモリ 33,636 KB
最終ジャッジ日時 2024-07-12 23:48:03
合計ジャッジ時間 37,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 WA -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 196 ms
18,060 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 190 ms
18,080 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 229 ms
25,120 KB
testcase_39 AC 224 ms
23,800 KB
testcase_40 RE -
testcase_41 AC 310 ms
18,384 KB
testcase_42 AC 304 ms
17,660 KB
testcase_43 AC 307 ms
18,584 KB
testcase_44 AC 308 ms
19,556 KB
testcase_45 AC 312 ms
16,884 KB
testcase_46 AC 247 ms
18,388 KB
testcase_47 AC 247 ms
17,440 KB
testcase_48 AC 249 ms
16,872 KB
testcase_49 AC 266 ms
19,580 KB
testcase_50 AC 249 ms
17,344 KB
testcase_51 AC 342 ms
17,956 KB
testcase_52 AC 266 ms
18,152 KB
testcase_53 AC 254 ms
17,812 KB
testcase_54 AC 223 ms
17,832 KB
testcase_55 AC 214 ms
19,212 KB
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define REP(i,n)for(int i=0;i<(n);++i)
#define REP1(i,n)for(int i=1;i<=(n);++i)
#define FORE(...)for(auto&&__VA_ARGS__)
#define ALL(x)begin(x),end(x)
#define mset(x,y)memset(x,y,sizeof x)
#define pb push_back
#define eb emplace_back
#define V vector
#define lb(x,y)(lower_bound(begin(x),end(x),y)-begin(x))
#define ub(x,y)(upper_bound(begin(x),end(x),y)-begin(x))
template<class T,class S>inline bool chmin(T&A,S B){return A>B?A=B,1:0;}
template<class T,class S>inline bool chmax(T&A,S B){return A<B?A=B,1:0;}
void fastIO(){ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);}
using Int=long long;
using Real=long double;
using PII=pair<int,int>;
using PLL=pair<Int,Int>;
#include<atcoder/segtree>
int OP(int a,int b){return a+b;}
int E(){return 0;}
int main(){
	fastIO();
	int N,Q;cin>>N>>Q;
	Int A[N];
	REP(i,N)cin>>A[i];
	int li[N];
	mset(li,-1);
	int ls=-1;
	int op[Q],k[Q];Int x[Q];
	REP(i,Q){
		cin>>op[i];
		if(op[i]==1)cin>>k[i]>>x[i],--k[i];
		if(op[i]==3)cin>>k[i],--k[i];
	}
	V<Int>vs;
	REP(i,N)vs.pb(A[i]);
	REP(i,Q)if(op[i]==1)vs.pb(x[i]);
	sort(ALL(vs));
	vs.erase(unique(ALL(vs)),end(vs));
	atcoder::segtree<int,OP,E>ST(size(vs));
	REP(i,N){
		int id=lb(vs,A[i]);
		ST.set(id,ST.get(id)+1);
	}
	V<PII>se;
	REP(i,Q){
		if(op[i]==1){
			A[k[i]]=x[i];
			li[k[i]]=i;
			se.eb(k[i],-i);
		}
		if(op[i]==2){
			sort(ALL(se));
			V<int>upd;
			REP(j,size(se)){
				if(j&&se[j].first==se[j-1].first)continue;
				se[j].second*=-1;
				int id=ST.max_right(0,[&](int semi){return semi<se[j].first+1;});
				upd.pb(id);
			}
			REP(j,size(upd)){
				ST.set(upd[j],ST.get(upd[j])-1);
			}
			REP(j,size(se)){
				if(j&&se[j].first==se[j-1].first)continue;
				int id=lb(vs,x[-se[j].second]);
				ST.set(id,ST.get(id)+1);
			}
			ls=i;
			se.clear();
		}
		if(op[i]==3){
			if(li[k[i]]>=ls){
				cout<<A[k[i]]<<"\n";
			}else{
				cout<<vs[ST.max_right(0,[&](int semi){return semi<k[i]+1;})]<<"\n";
			}
		}
	}
}
0