結果

問題 No.2809 Sort Query
ユーザー highlighterhighlighter
提出日時 2024-04-23 09:02:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 2,383 bytes
コンパイル時間 3,972 ms
コンパイル使用メモリ 266,084 KB
実行使用メモリ 40,900 KB
最終ジャッジ日時 2024-07-12 21:01:53
合計ジャッジ時間 32,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 502 ms
35,312 KB
testcase_02 AC 357 ms
35,412 KB
testcase_03 AC 323 ms
36,116 KB
testcase_04 AC 328 ms
36,456 KB
testcase_05 AC 321 ms
35,564 KB
testcase_06 AC 250 ms
32,384 KB
testcase_07 AC 220 ms
32,996 KB
testcase_08 AC 231 ms
32,024 KB
testcase_09 AC 224 ms
32,136 KB
testcase_10 AC 222 ms
32,228 KB
testcase_11 AC 234 ms
33,696 KB
testcase_12 AC 226 ms
33,884 KB
testcase_13 AC 233 ms
33,852 KB
testcase_14 AC 229 ms
33,936 KB
testcase_15 AC 236 ms
33,856 KB
testcase_16 AC 240 ms
33,828 KB
testcase_17 AC 230 ms
33,836 KB
testcase_18 AC 228 ms
33,848 KB
testcase_19 AC 241 ms
33,872 KB
testcase_20 AC 237 ms
33,844 KB
testcase_21 AC 403 ms
40,856 KB
testcase_22 AC 404 ms
40,900 KB
testcase_23 AC 412 ms
40,772 KB
testcase_24 AC 397 ms
40,784 KB
testcase_25 AC 414 ms
40,836 KB
testcase_26 AC 369 ms
36,880 KB
testcase_27 AC 371 ms
36,820 KB
testcase_28 AC 365 ms
37,632 KB
testcase_29 AC 366 ms
36,872 KB
testcase_30 AC 362 ms
37,340 KB
testcase_31 AC 188 ms
32,360 KB
testcase_32 AC 189 ms
32,132 KB
testcase_33 AC 192 ms
31,944 KB
testcase_34 AC 183 ms
31,616 KB
testcase_35 AC 180 ms
31,528 KB
testcase_36 AC 195 ms
33,912 KB
testcase_37 AC 193 ms
33,856 KB
testcase_38 AC 192 ms
33,724 KB
testcase_39 AC 197 ms
33,760 KB
testcase_40 AC 191 ms
33,880 KB
testcase_41 AC 352 ms
32,544 KB
testcase_42 AC 348 ms
32,736 KB
testcase_43 AC 349 ms
32,672 KB
testcase_44 AC 351 ms
32,756 KB
testcase_45 AC 350 ms
32,672 KB
testcase_46 AC 297 ms
32,580 KB
testcase_47 AC 289 ms
32,684 KB
testcase_48 AC 283 ms
32,576 KB
testcase_49 AC 279 ms
32,748 KB
testcase_50 AC 318 ms
32,760 KB
testcase_51 AC 359 ms
32,672 KB
testcase_52 AC 249 ms
32,680 KB
testcase_53 AC 257 ms
32,576 KB
testcase_54 AC 212 ms
32,632 KB
testcase_55 AC 194 ms
32,516 KB
testcase_56 AC 234 ms
27,652 KB
testcase_57 AC 183 ms
24,088 KB
testcase_58 AC 181 ms
22,072 KB
testcase_59 AC 196 ms
25,704 KB
testcase_60 AC 217 ms
22,380 KB
testcase_61 AC 271 ms
27,236 KB
testcase_62 AC 191 ms
23,288 KB
testcase_63 AC 266 ms
28,344 KB
testcase_64 AC 335 ms
32,360 KB
testcase_65 AC 186 ms
19,348 KB
testcase_66 AC 2 ms
6,944 KB
testcase_67 AC 2 ms
6,944 KB
testcase_68 AC 2 ms
6,940 KB
testcase_69 AC 2 ms
6,940 KB
testcase_70 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

signed main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N,Q;
	cin >> N >> Q;
	vector<long long> A(N);
	for(int i=0;i<N;i++){
		cin >> A[i];
	}
	vector<long long> data=A;
	vector<vector<long long>> query(Q);
	for(int i=0;i<Q;i++){
		int c;
		cin >> c;
		if(c==1){
			int k;
			long long x;
			cin >> k >> x;
			data.emplace_back(x);
			query[i]={c,k,x};
			continue;
		}
		if(c==2){
			query[i]={c};
			continue;
		}
		int k;
		cin >> k;
		query[i]={c,k};
	}
	vector<long long> data2=data;
	sort(data2.begin(),data2.end());
	data2.erase(unique(data2.begin(),data2.end()),data2.end());
	for(long long &i : data){
		i=lower_bound(data2.begin(),data2.end(),i)-data2.begin();
	}
	vector<long long> relation(*max_element(data.begin(),data.end())+1);
	for(int i=0;i<N;i++){
		relation[data[i]]=A[i];
		A[i]=data[i];
	}
	int mem=N;
	for(int i=0;i<Q;i++){
		if(query[i][0]==1){
			relation[data[mem]]=query[i][2];
			query[i][2]=data[mem];
			mem++;
		}
	}
	queue<long long> change;
	vector<bool> change2(N,false);
	Fenwick_tree tree(relation.size());
	for(int i=0;i<N;i++){
		tree.add(A[i],1);
		change.emplace(i);
	}
	for(int i=0;i<Q;i++){
		if(query[i][0]==1){
			int k=query[i][1]-1;
			int x=query[i][2];
			A[k]=x;
			if(!change2[k]){
				change.emplace(k);
				change2[k]=true;
			}
		}
		if(query[i][0]==2){
			int t=change.size();
			for(;t--;){
				long long j=change.front();
				change2[j]=false;
				change.pop();
				long long t=tree.max_right(j);
				change.emplace((long long)(N)*t+j);
			}
			while(!change.empty()){
				int t=change.front()/N;
				int 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 k=query[i][1]-1;
			if(A[k]!=-1){
				cout << relation[A[k]] << '\n';
			}
			else{
				cout << relation[tree.max_right(k)] << '\n';
			}
		}
	}
}
0