結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 634 ms
35,496 KB
testcase_02 AC 503 ms
35,488 KB
testcase_03 AC 515 ms
35,372 KB
testcase_04 AC 527 ms
35,364 KB
testcase_05 AC 544 ms
35,368 KB
testcase_06 AC 335 ms
31,888 KB
testcase_07 AC 354 ms
31,912 KB
testcase_08 AC 389 ms
31,908 KB
testcase_09 AC 325 ms
31,916 KB
testcase_10 AC 350 ms
31,916 KB
testcase_11 AC 325 ms
33,708 KB
testcase_12 AC 305 ms
33,700 KB
testcase_13 AC 288 ms
33,864 KB
testcase_14 AC 288 ms
33,876 KB
testcase_15 AC 297 ms
33,808 KB
testcase_16 AC 280 ms
33,804 KB
testcase_17 AC 281 ms
33,960 KB
testcase_18 AC 284 ms
33,828 KB
testcase_19 AC 294 ms
33,836 KB
testcase_20 AC 332 ms
33,824 KB
testcase_21 AC 608 ms
40,852 KB
testcase_22 AC 615 ms
40,876 KB
testcase_23 AC 618 ms
40,872 KB
testcase_24 AC 620 ms
40,748 KB
testcase_25 AC 635 ms
40,708 KB
testcase_26 AC 560 ms
36,748 KB
testcase_27 AC 564 ms
36,776 KB
testcase_28 AC 546 ms
36,764 KB
testcase_29 AC 559 ms
36,772 KB
testcase_30 AC 552 ms
36,776 KB
testcase_31 AC 198 ms
31,404 KB
testcase_32 AC 202 ms
31,548 KB
testcase_33 AC 203 ms
31,560 KB
testcase_34 AC 210 ms
31,660 KB
testcase_35 AC 214 ms
31,472 KB
testcase_36 AC 219 ms
33,816 KB
testcase_37 AC 214 ms
33,856 KB
testcase_38 AC 217 ms
33,800 KB
testcase_39 AC 221 ms
33,760 KB
testcase_40 AC 223 ms
33,896 KB
testcase_41 AC 545 ms
32,640 KB
testcase_42 AC 546 ms
32,640 KB
testcase_43 AC 559 ms
32,640 KB
testcase_44 AC 528 ms
32,640 KB
testcase_45 AC 532 ms
32,640 KB
testcase_46 AC 498 ms
32,624 KB
testcase_47 AC 496 ms
32,640 KB
testcase_48 AC 480 ms
32,640 KB
testcase_49 AC 478 ms
32,512 KB
testcase_50 AC 472 ms
32,640 KB
testcase_51 AC 363 ms
32,640 KB
testcase_52 AC 301 ms
32,640 KB
testcase_53 AC 234 ms
32,640 KB
testcase_54 AC 235 ms
32,612 KB
testcase_55 AC 227 ms
32,512 KB
testcase_56 AC 355 ms
27,396 KB
testcase_57 AC 283 ms
23,964 KB
testcase_58 AC 272 ms
22,076 KB
testcase_59 AC 308 ms
25,728 KB
testcase_60 AC 316 ms
22,144 KB
testcase_61 AC 404 ms
27,076 KB
testcase_62 AC 287 ms
23,292 KB
testcase_63 AC 393 ms
27,996 KB
testcase_64 AC 463 ms
31,728 KB
testcase_65 AC 268 ms
19,096 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:
	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 sum(int k){
		if(k<=0){
			return 0;
		}
		if(k>siz){
			return sum(siz);
		}
		int ans=0;
		for(int i=k-1;i>=0;i-=((i+1)&(-i-1))){
			ans+=dat[i];
		}
		return ans;
	}
	int max_right(int x){
		//A[0]+A[1]+...+A[k-1]<=xを満たす最大のk
		int l=0;
		int r=siz;
		while((r-l)>1){
			int m=(l+r)/2;
			if(sum(m)<=x){
				l=m;
				continue;
			}
			r=m;
		}
		return l;
	}
};

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;
			vector<long long> vec={c,k,x};
			data.emplace_back(x);
			query[i]=vec;
			continue;
		}
		if(c==2){
			vector<long long> vec={c};
			query[i]=vec;
			continue;
		}
		int k;
		cin >> k;
		vector<long long> vec={c,k};
		query[i]=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<long long> change;
	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;
			change.emplace(k);
		}
		if(query[i][0]==2){
			int t=change.size();
			for(;t--;){
				long long j=change.front();
				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