結果

問題 No.2809 Sort Query
ユーザー highlighterhighlighter
提出日時 2024-06-21 17:42:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 490 ms / 2,000 ms
コード長 2,760 bytes
コンパイル時間 3,225 ms
コンパイル使用メモリ 263,688 KB
実行使用メモリ 43,448 KB
最終ジャッジ日時 2024-07-12 21:07:47
合計ジャッジ時間 35,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 490 ms
37,140 KB
testcase_02 AC 367 ms
37,264 KB
testcase_03 AC 351 ms
37,140 KB
testcase_04 AC 363 ms
37,136 KB
testcase_05 AC 373 ms
37,268 KB
testcase_06 AC 251 ms
32,488 KB
testcase_07 AC 270 ms
32,404 KB
testcase_08 AC 247 ms
32,396 KB
testcase_09 AC 265 ms
32,400 KB
testcase_10 AC 249 ms
32,528 KB
testcase_11 AC 253 ms
33,940 KB
testcase_12 AC 260 ms
33,932 KB
testcase_13 AC 267 ms
34,068 KB
testcase_14 AC 255 ms
34,016 KB
testcase_15 AC 250 ms
33,952 KB
testcase_16 AC 262 ms
33,968 KB
testcase_17 AC 250 ms
33,976 KB
testcase_18 AC 248 ms
34,028 KB
testcase_19 AC 244 ms
34,012 KB
testcase_20 AC 263 ms
33,956 KB
testcase_21 AC 407 ms
43,408 KB
testcase_22 AC 414 ms
43,332 KB
testcase_23 AC 421 ms
43,396 KB
testcase_24 AC 421 ms
43,352 KB
testcase_25 AC 418 ms
43,448 KB
testcase_26 AC 395 ms
38,676 KB
testcase_27 AC 391 ms
38,800 KB
testcase_28 AC 399 ms
38,676 KB
testcase_29 AC 398 ms
38,676 KB
testcase_30 AC 388 ms
38,668 KB
testcase_31 AC 213 ms
31,628 KB
testcase_32 AC 208 ms
31,632 KB
testcase_33 AC 213 ms
31,636 KB
testcase_34 AC 220 ms
31,592 KB
testcase_35 AC 214 ms
31,636 KB
testcase_36 AC 218 ms
33,932 KB
testcase_37 AC 213 ms
33,936 KB
testcase_38 AC 214 ms
33,936 KB
testcase_39 AC 218 ms
33,932 KB
testcase_40 AC 209 ms
34,032 KB
testcase_41 AC 399 ms
34,032 KB
testcase_42 AC 404 ms
34,048 KB
testcase_43 AC 412 ms
34,000 KB
testcase_44 AC 402 ms
33,944 KB
testcase_45 AC 392 ms
33,940 KB
testcase_46 AC 344 ms
34,000 KB
testcase_47 AC 347 ms
33,972 KB
testcase_48 AC 342 ms
33,932 KB
testcase_49 AC 345 ms
34,052 KB
testcase_50 AC 344 ms
33,992 KB
testcase_51 AC 389 ms
33,920 KB
testcase_52 AC 278 ms
33,976 KB
testcase_53 AC 260 ms
33,932 KB
testcase_54 AC 258 ms
33,936 KB
testcase_55 AC 303 ms
33,964 KB
testcase_56 AC 263 ms
28,780 KB
testcase_57 AC 214 ms
24,960 KB
testcase_58 AC 201 ms
23,076 KB
testcase_59 AC 214 ms
26,604 KB
testcase_60 AC 232 ms
23,568 KB
testcase_61 AC 295 ms
28,716 KB
testcase_62 AC 208 ms
24,156 KB
testcase_63 AC 278 ms
29,380 KB
testcase_64 AC 379 ms
33,508 KB
testcase_65 AC 205 ms
20,348 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 2 ms
5,376 KB
testcase_68 AC 2 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct Fenwick_tree{
	private:
	uint_fast32_t siz=1;
	uint_fast32_t d=1;
	vector<int_fast32_t> dat;
	public:
	Fenwick_tree(int_fast32_t N) : dat(N,0){
		siz=N;
		d=bit_floor(siz-1);
	}
	void add(int_fast32_t k,int_fast32_t x){
		for(int_fast32_t i=k;i<siz;i+=((i+1)&(-i-1))){
			dat[i]+=x;
		}
	}
	int_fast32_t max_right(int_fast32_t x){
		int_fast32_t ans=0;
		int_fast32_t res=0;
		for(uint_fast32_t h=d;h>0;h/=2){
			if(ans+h<=siz){
				if(res+dat[ans+h-1]<=x){
					res+=dat[ans+h-1];
					ans+=h;
				}
			}
		}
		return ans;
	}
};

signed main(){
	int_fast32_t N,Q;
	scanf("%" SCNdFAST32 "%" SCNdFAST32,&N,&Q);
	vector<int_fast64_t> A(N);
	for(int_fast32_t i=0;i<N;i++){
		scanf("%" SCNdFAST64,&A[i]);
	}
	vector<int_fast64_t> data=A;
	vector<vector<int_fast64_t>> query(Q);
	for(int_fast32_t i=0;i<Q;i++){
		int_fast32_t c;
		scanf("%" SCNdFAST32,&c);
		if(c==1){
			int_fast32_t k;
			int_fast64_t x;
			scanf("%" SCNdFAST32 "%" SCNdFAST64,&k,&x);
			data.emplace_back(x);
			query[i]={c,k,x};
			continue;
		}
		if(c==2){
			query[i]={c};
			continue;
		}
		int_fast32_t k;
		scanf("%" SCNdFAST32,&k);
		query[i]={c,k};
	}
	vector<int_fast64_t> data2=data;
	sort(data2.begin(),data2.end());
	data2.erase(unique(data2.begin(),data2.end()),data2.end());
	for(int_fast64_t &i : data){
		i=lower_bound(data2.begin(),data2.end(),i)-data2.begin();
	}
	vector<int_fast64_t> relation(*max_element(data.begin(),data.end())+1);
	for(int_fast32_t i=0;i<N;i++){
		relation[data[i]]=A[i];
		A[i]=data[i];
	}
	int_fast32_t mem=N;
	for(int_fast32_t i=0;i<Q;i++){
		if(query[i][0]==1){
			relation[data[mem]]=query[i][2];
			query[i][2]=data[mem];
			mem++;
		}
	}
	queue<int_fast64_t> change;
	vector<bool> change2(N,false);
	Fenwick_tree tree(relation.size());
	for(int_fast32_t i=0;i<N;i++){
		tree.add(A[i],1);
		change.emplace(i);
	}
	for(int_fast32_t i=0;i<Q;i++){
		if(query[i][0]==1){
			int_fast32_t k=query[i][1]-1;
			int_fast32_t x=query[i][2];
			A[k]=x;
			if(!change2[k]){
				change.emplace(k);
				change2[k]=true;
			}
		}
		if(query[i][0]==2){
			int_fast32_t t=change.size();
			for(;t--;){
				int_fast64_t j=change.front();
				change2[j]=false;
				change.pop();
				int_fast64_t t=tree.max_right(j);
				change.emplace((int_fast64_t)(N)*t+j);
			}
			while(!change.empty()){
				int_fast32_t t=change.front()/N;
				int_fast32_t j=change.front()%N;
				if(A[j]==-1){
					change.pop();
					continue;
				}
				tree.add(t,-1);
				tree.add(A[j],1);
				A[j]=-1;
				change.pop();
			}
		}
		if(query[i][0]==3){
			int_fast32_t k=query[i][1]-1;
			if(A[k]!=-1){
				printf("%" PRIdFAST64 "\n",relation[A[k]]);
			}
			else{
				printf("%" PRIdFAST64 "\n",relation[tree.max_right(k)]);
			}
		}
	}
}
0