結果

問題 No.2809 Sort Query
ユーザー k82bk82b
提出日時 2024-07-13 00:23:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,939 bytes
コンパイル時間 2,769 ms
コンパイル使用メモリ 223,304 KB
実行使用メモリ 38,992 KB
最終ジャッジ日時 2024-07-13 00:23:50
合計ジャッジ時間 35,059 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
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 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 254 ms
23,756 KB
testcase_32 AC 258 ms
23,828 KB
testcase_33 AC 259 ms
23,732 KB
testcase_34 AC 257 ms
23,824 KB
testcase_35 AC 273 ms
23,768 KB
testcase_36 AC 366 ms
30,304 KB
testcase_37 AC 375 ms
29,616 KB
testcase_38 AC 349 ms
29,360 KB
testcase_39 AC 368 ms
29,572 KB
testcase_40 AC 384 ms
30,052 KB
testcase_41 AC 302 ms
20,740 KB
testcase_42 AC 297 ms
19,940 KB
testcase_43 AC 303 ms
20,544 KB
testcase_44 AC 304 ms
20,536 KB
testcase_45 AC 306 ms
21,292 KB
testcase_46 AC 247 ms
20,940 KB
testcase_47 AC 249 ms
19,936 KB
testcase_48 AC 242 ms
20,660 KB
testcase_49 AC 244 ms
19,808 KB
testcase_50 AC 245 ms
20,600 KB
testcase_51 AC 447 ms
21,324 KB
testcase_52 AC 225 ms
20,884 KB
testcase_53 AC 195 ms
21,084 KB
testcase_54 AC 193 ms
19,888 KB
testcase_55 AC 190 ms
20,336 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 AC 2 ms
6,944 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],AA[N];
	REP(i,N)cin>>A[i],AA[i]=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);
	}
	map<int,int>mp;
	set<int>st;
	bool f=false;
	REP(i,Q){
		if(op[i]==1){
			A[k[i]]=x[i];
			li[k[i]]=i;
			mp[k[i]]=x[i];
		}
		if(op[i]==2){
			V<int>upd;
			FORE([kk,xx]:mp){
				int id;
				if(f){
					id=ST.max_right(0,[&](int semi){return semi<kk+1;});
				}else{
					id=lb(vs,AA[kk]);
				}
				upd.pb(id);
			}
			REP(j,size(upd)){
				ST.set(upd[j],ST.get(upd[j])-1);
			}
			FORE([kk,xx]:mp){
				int id=lb(vs,xx);
				ST.set(id,ST.get(id)+1);
			}
			ls=i;
			mp.clear();
			f=true;
		}
		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