結果

問題 No.2809 Sort Query
ユーザー highlighterhighlighter
提出日時 2024-04-22 15:29:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 2,680 bytes
コンパイル時間 5,900 ms
コンパイル使用メモリ 270,840 KB
実行使用メモリ 44,524 KB
最終ジャッジ日時 2024-07-12 20:59:14
合計ジャッジ時間 33,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 518 ms
39,156 KB
testcase_02 AC 322 ms
38,628 KB
testcase_03 AC 335 ms
39,000 KB
testcase_04 AC 322 ms
38,572 KB
testcase_05 AC 321 ms
39,608 KB
testcase_06 AC 233 ms
36,220 KB
testcase_07 AC 236 ms
35,068 KB
testcase_08 AC 227 ms
35,584 KB
testcase_09 AC 232 ms
35,328 KB
testcase_10 AC 232 ms
35,296 KB
testcase_11 AC 253 ms
36,528 KB
testcase_12 AC 229 ms
37,380 KB
testcase_13 AC 244 ms
37,196 KB
testcase_14 AC 244 ms
37,664 KB
testcase_15 AC 242 ms
37,084 KB
testcase_16 AC 243 ms
36,828 KB
testcase_17 AC 254 ms
36,320 KB
testcase_18 AC 243 ms
37,528 KB
testcase_19 AC 247 ms
37,408 KB
testcase_20 AC 243 ms
37,644 KB
testcase_21 AC 427 ms
43,476 KB
testcase_22 AC 429 ms
43,916 KB
testcase_23 AC 431 ms
43,504 KB
testcase_24 AC 433 ms
44,524 KB
testcase_25 AC 413 ms
44,232 KB
testcase_26 AC 372 ms
40,752 KB
testcase_27 AC 372 ms
39,996 KB
testcase_28 AC 365 ms
40,348 KB
testcase_29 AC 371 ms
40,124 KB
testcase_30 AC 368 ms
40,304 KB
testcase_31 AC 196 ms
35,108 KB
testcase_32 AC 190 ms
35,224 KB
testcase_33 AC 192 ms
35,192 KB
testcase_34 AC 186 ms
34,720 KB
testcase_35 AC 192 ms
36,208 KB
testcase_36 AC 204 ms
37,064 KB
testcase_37 AC 203 ms
36,824 KB
testcase_38 AC 200 ms
36,920 KB
testcase_39 AC 208 ms
36,772 KB
testcase_40 AC 206 ms
37,188 KB
testcase_41 AC 345 ms
35,448 KB
testcase_42 AC 355 ms
35,552 KB
testcase_43 AC 345 ms
35,268 KB
testcase_44 AC 350 ms
35,940 KB
testcase_45 AC 348 ms
35,860 KB
testcase_46 AC 294 ms
35,560 KB
testcase_47 AC 293 ms
35,920 KB
testcase_48 AC 292 ms
35,088 KB
testcase_49 AC 295 ms
35,568 KB
testcase_50 AC 294 ms
35,480 KB
testcase_51 AC 338 ms
34,060 KB
testcase_52 AC 229 ms
34,376 KB
testcase_53 AC 219 ms
35,000 KB
testcase_54 AC 246 ms
33,836 KB
testcase_55 AC 245 ms
33,880 KB
testcase_56 AC 248 ms
28,960 KB
testcase_57 AC 195 ms
25,064 KB
testcase_58 AC 182 ms
23,996 KB
testcase_59 AC 205 ms
27,864 KB
testcase_60 AC 223 ms
24,456 KB
testcase_61 AC 279 ms
30,140 KB
testcase_62 AC 182 ms
24,336 KB
testcase_63 AC 261 ms
30,712 KB
testcase_64 AC 322 ms
35,072 KB
testcase_65 AC 169 ms
20,932 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,944 KB
testcase_70 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct Fenwick_tree{
	int siz=1;
	vector<int> dat;
	Fenwick_tree(int N) : dat(N,0){
		siz=N;
	}
	Fenwick_tree(vector<int> A) : dat(A.size(),0){
		siz=(int)(A.size());
		vector<int> sum(siz+1,0);
		for(int i=1;i<=siz;i++){
			sum[i]=sum[i-1]+A[i-1];
		}
		for(int i=0;i<siz;i++){
			int len=(i+1)&(-i-1);
			dat[i]=sum[i+1]-sum[i+1-len];
		}
	}
	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((unsigned int)(siz-1));
		while(h>0){
			if(ans+h>siz){
				h/=2;
				continue;
			}
			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;
	for(int i=0;i<Q;i++){
		int c;
		cin >> c;
		if(c==1){
			int k;
			long long x;
			cin >> k >> x;
			vector<long long> vec={c,k,x};
			data.emplace_back(x);
			query.emplace_back(vec);
			continue;
		}
		if(c==2){
			vector<long long> vec={c};
			query.emplace_back(vec);
			continue;
		}
		int k;
		cin >> k;
		vector<long long> vec={c,k};
		query.emplace_back(vec);
	}
	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++;
		}
	}
	vector<long long> B=A;
	stack<int> change;
	Fenwick_tree tree(relation.size());
	for(int i=0;i<N;i++){
		tree.add(A[i],1);
		change.push(i);
	}
	stack<pair<int,int>> change2;
	for(int i=0;i<Q;i++){
		if(query[i][0]==1){
			int k=query[i][1]-1;
			int x=query[i][2];
			B[k]=x;
			change.push(k);
		}
		if(query[i][0]==2){
			while(!change.empty()){
				int j=change.top();
				change.pop();
				int t=tree.max_right(j);
				change2.push({t,j});
			}
			while(!change2.empty()){
				if(B[change2.top().second]==-1){
					change2.pop();
					continue;
				}
				tree.add(change2.top().first,-1);
				tree.add(B[change2.top().second],1);
				B[change2.top().second]=-1;
				change2.pop();
			}
		}
		if(query[i][0]==3){
			int k=query[i][1]-1;
			if(B[k]!=-1){
				cout << relation[B[k]] << '\n';
			}
			else{
				cout << relation[tree.max_right(k)] << '\n';
			}
		}
	}
}
0