結果

問題 No.2809 Sort Query
ユーザー k82bk82b
提出日時 2024-07-13 00:25:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 1,939 bytes
コンパイル時間 2,656 ms
コンパイル使用メモリ 221,872 KB
実行使用メモリ 40,872 KB
最終ジャッジ日時 2024-07-13 00:26:13
合計ジャッジ時間 34,697 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 270 ms
22,556 KB
testcase_02 AC 272 ms
22,516 KB
testcase_03 AC 271 ms
22,476 KB
testcase_04 AC 300 ms
22,576 KB
testcase_05 AC 275 ms
22,780 KB
testcase_06 AC 201 ms
18,516 KB
testcase_07 AC 199 ms
19,608 KB
testcase_08 AC 212 ms
18,712 KB
testcase_09 AC 199 ms
19,224 KB
testcase_10 AC 199 ms
18,328 KB
testcase_11 AC 366 ms
32,224 KB
testcase_12 AC 358 ms
32,932 KB
testcase_13 AC 396 ms
33,716 KB
testcase_14 AC 367 ms
33,556 KB
testcase_15 AC 361 ms
32,440 KB
testcase_16 AC 374 ms
33,300 KB
testcase_17 AC 393 ms
33,280 KB
testcase_18 AC 362 ms
32,968 KB
testcase_19 AC 368 ms
33,020 KB
testcase_20 AC 363 ms
32,188 KB
testcase_21 AC 520 ms
40,392 KB
testcase_22 AC 495 ms
40,552 KB
testcase_23 AC 537 ms
40,808 KB
testcase_24 AC 499 ms
40,872 KB
testcase_25 AC 545 ms
40,488 KB
testcase_26 AC 391 ms
29,784 KB
testcase_27 AC 384 ms
29,592 KB
testcase_28 AC 413 ms
29,832 KB
testcase_29 AC 378 ms
29,752 KB
testcase_30 AC 371 ms
29,768 KB
testcase_31 AC 268 ms
25,552 KB
testcase_32 AC 244 ms
25,644 KB
testcase_33 AC 238 ms
25,580 KB
testcase_34 AC 245 ms
25,660 KB
testcase_35 AC 244 ms
25,644 KB
testcase_36 AC 344 ms
32,368 KB
testcase_37 AC 330 ms
32,680 KB
testcase_38 AC 325 ms
32,112 KB
testcase_39 AC 324 ms
33,712 KB
testcase_40 AC 352 ms
33,040 KB
testcase_41 AC 288 ms
19,884 KB
testcase_42 AC 287 ms
21,184 KB
testcase_43 AC 312 ms
20,820 KB
testcase_44 AC 290 ms
20,708 KB
testcase_45 AC 287 ms
20,700 KB
testcase_46 AC 249 ms
20,156 KB
testcase_47 AC 225 ms
19,720 KB
testcase_48 AC 223 ms
19,416 KB
testcase_49 AC 231 ms
19,640 KB
testcase_50 AC 228 ms
21,892 KB
testcase_51 AC 355 ms
20,232 KB
testcase_52 AC 235 ms
20,188 KB
testcase_53 AC 273 ms
19,924 KB
testcase_54 AC 181 ms
20,604 KB
testcase_55 AC 187 ms
20,168 KB
testcase_56 AC 260 ms
15,744 KB
testcase_57 AC 191 ms
13,848 KB
testcase_58 AC 179 ms
13,524 KB
testcase_59 AC 199 ms
13,924 KB
testcase_60 AC 200 ms
17,536 KB
testcase_61 AC 288 ms
21,028 KB
testcase_62 AC 184 ms
13,860 KB
testcase_63 AC 239 ms
18,956 KB
testcase_64 AC 293 ms
21,176 KB
testcase_65 AC 165 ms
13,752 KB
testcase_66 AC 2 ms
6,940 KB
testcase_67 AC 2 ms
6,944 KB
testcase_68 AC 3 ms
6,940 KB
testcase_69 AC 2 ms
6,944 KB
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