結果

問題 No.2809 Sort Query
ユーザー highlighterhighlighter
提出日時 2024-04-22 21:48:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,616 bytes
コンパイル時間 3,180 ms
コンパイル使用メモリ 264,672 KB
実行使用メモリ 39,772 KB
最終ジャッジ日時 2024-07-12 21:00:15
合計ジャッジ時間 35,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 271 ms
32,544 KB
testcase_12 AC 267 ms
32,564 KB
testcase_13 AC 263 ms
32,440 KB
testcase_14 AC 260 ms
32,568 KB
testcase_15 AC 273 ms
32,568 KB
testcase_16 AC 271 ms
32,568 KB
testcase_17 AC 266 ms
32,568 KB
testcase_18 AC 264 ms
32,700 KB
testcase_19 AC 257 ms
32,444 KB
testcase_20 AC 274 ms
32,572 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 223 ms
30,268 KB
testcase_32 AC 222 ms
30,264 KB
testcase_33 AC 224 ms
30,276 KB
testcase_34 AC 232 ms
30,272 KB
testcase_35 AC 214 ms
30,260 KB
testcase_36 AC 228 ms
32,568 KB
testcase_37 AC 229 ms
32,568 KB
testcase_38 AC 236 ms
32,696 KB
testcase_39 AC 232 ms
32,572 KB
testcase_40 AC 238 ms
32,572 KB
testcase_41 TLE -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
権限があれば一括ダウンロードができます

ソースコード

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++;
		}
	}
	queue<int> change;
	Fenwick_tree tree(relation.size());
	for(int i=0;i<N;i++){
		tree.add(A[i],1);
		change.push(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;
			change.push(k);
		}
		if(query[i][0]==2){
			int t=change.size();
			for(;t--;){
				int j=change.front();
				change.pop();
				int t=tree.max_right(j);
				change.push(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