結果

問題 No.2809 Sort Query
ユーザー highlighterhighlighter
提出日時 2024-04-23 20:00:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 2,383 bytes
コンパイル時間 3,872 ms
コンパイル使用メモリ 265,800 KB
実行使用メモリ 40,900 KB
最終ジャッジ日時 2024-07-12 21:03:24
合計ジャッジ時間 34,958 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 355 ms
35,332 KB
testcase_02 AC 356 ms
35,476 KB
testcase_03 AC 355 ms
36,052 KB
testcase_04 AC 354 ms
35,388 KB
testcase_05 AC 355 ms
35,476 KB
testcase_06 AC 251 ms
31,896 KB
testcase_07 AC 253 ms
32,864 KB
testcase_08 AC 250 ms
31,892 KB
testcase_09 AC 253 ms
33,260 KB
testcase_10 AC 253 ms
31,892 KB
testcase_11 AC 258 ms
33,696 KB
testcase_12 AC 251 ms
33,940 KB
testcase_13 AC 257 ms
33,908 KB
testcase_14 AC 259 ms
33,864 KB
testcase_15 AC 258 ms
33,864 KB
testcase_16 AC 261 ms
33,868 KB
testcase_17 AC 257 ms
33,696 KB
testcase_18 AC 254 ms
33,872 KB
testcase_19 AC 259 ms
33,856 KB
testcase_20 AC 255 ms
33,756 KB
testcase_21 AC 448 ms
40,884 KB
testcase_22 AC 449 ms
40,880 KB
testcase_23 AC 453 ms
40,900 KB
testcase_24 AC 451 ms
40,876 KB
testcase_25 AC 452 ms
40,864 KB
testcase_26 AC 412 ms
37,540 KB
testcase_27 AC 412 ms
36,776 KB
testcase_28 AC 415 ms
36,892 KB
testcase_29 AC 417 ms
37,332 KB
testcase_30 AC 416 ms
36,860 KB
testcase_31 AC 205 ms
31,732 KB
testcase_32 AC 208 ms
31,504 KB
testcase_33 AC 207 ms
31,636 KB
testcase_34 AC 202 ms
31,584 KB
testcase_35 AC 205 ms
31,484 KB
testcase_36 AC 217 ms
33,832 KB
testcase_37 AC 218 ms
33,900 KB
testcase_38 AC 214 ms
33,912 KB
testcase_39 AC 215 ms
33,828 KB
testcase_40 AC 215 ms
33,888 KB
testcase_41 AC 400 ms
32,676 KB
testcase_42 AC 392 ms
32,756 KB
testcase_43 AC 400 ms
32,724 KB
testcase_44 AC 401 ms
32,600 KB
testcase_45 AC 398 ms
32,780 KB
testcase_46 AC 347 ms
32,724 KB
testcase_47 AC 337 ms
32,528 KB
testcase_48 AC 332 ms
32,660 KB
testcase_49 AC 338 ms
32,696 KB
testcase_50 AC 337 ms
32,736 KB
testcase_51 AC 229 ms
32,608 KB
testcase_52 AC 219 ms
32,532 KB
testcase_53 AC 225 ms
32,716 KB
testcase_54 AC 227 ms
32,716 KB
testcase_55 AC 221 ms
32,688 KB
testcase_56 AC 272 ms
27,988 KB
testcase_57 AC 213 ms
23,940 KB
testcase_58 AC 203 ms
21,952 KB
testcase_59 AC 219 ms
25,600 KB
testcase_60 AC 246 ms
23,136 KB
testcase_61 AC 308 ms
28,188 KB
testcase_62 AC 205 ms
23,292 KB
testcase_63 AC 283 ms
28,248 KB
testcase_64 AC 354 ms
32,072 KB
testcase_65 AC 193 ms
19,352 KB
testcase_66 AC 2 ms
6,940 KB
testcase_67 AC 2 ms
6,944 KB
testcase_68 AC 2 ms
6,944 KB
testcase_69 AC 2 ms
6,940 KB
testcase_70 AC 2 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