結果

問題 No.2809 Sort Query
ユーザー highlighterhighlighter
提出日時 2024-04-22 15:38:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 3,302 bytes
コンパイル時間 4,276 ms
コンパイル使用メモリ 275,364 KB
実行使用メモリ 40,892 KB
最終ジャッジ日時 2024-07-12 20:59:39
合計ジャッジ時間 35,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 469 ms
35,424 KB
testcase_02 AC 367 ms
35,432 KB
testcase_03 AC 347 ms
35,544 KB
testcase_04 AC 345 ms
35,428 KB
testcase_05 AC 353 ms
35,428 KB
testcase_06 AC 256 ms
31,848 KB
testcase_07 AC 246 ms
31,972 KB
testcase_08 AC 248 ms
31,848 KB
testcase_09 AC 268 ms
31,976 KB
testcase_10 AC 253 ms
31,968 KB
testcase_11 AC 262 ms
33,980 KB
testcase_12 AC 249 ms
33,852 KB
testcase_13 AC 262 ms
33,848 KB
testcase_14 AC 264 ms
33,852 KB
testcase_15 AC 258 ms
33,972 KB
testcase_16 AC 249 ms
33,852 KB
testcase_17 AC 259 ms
33,844 KB
testcase_18 AC 258 ms
33,976 KB
testcase_19 AC 257 ms
33,848 KB
testcase_20 AC 259 ms
33,848 KB
testcase_21 AC 470 ms
40,888 KB
testcase_22 AC 462 ms
40,888 KB
testcase_23 AC 466 ms
40,892 KB
testcase_24 AC 457 ms
40,888 KB
testcase_25 AC 457 ms
40,888 KB
testcase_26 AC 385 ms
36,796 KB
testcase_27 AC 391 ms
36,800 KB
testcase_28 AC 394 ms
36,924 KB
testcase_29 AC 385 ms
36,752 KB
testcase_30 AC 392 ms
36,796 KB
testcase_31 AC 198 ms
31,676 KB
testcase_32 AC 203 ms
31,548 KB
testcase_33 AC 199 ms
31,552 KB
testcase_34 AC 198 ms
31,548 KB
testcase_35 AC 201 ms
31,544 KB
testcase_36 AC 209 ms
33,848 KB
testcase_37 AC 211 ms
33,852 KB
testcase_38 AC 215 ms
33,980 KB
testcase_39 AC 214 ms
33,852 KB
testcase_40 AC 216 ms
33,848 KB
testcase_41 AC 373 ms
32,564 KB
testcase_42 AC 374 ms
32,696 KB
testcase_43 AC 381 ms
32,572 KB
testcase_44 AC 380 ms
32,692 KB
testcase_45 AC 382 ms
32,828 KB
testcase_46 AC 328 ms
32,696 KB
testcase_47 AC 306 ms
32,696 KB
testcase_48 AC 307 ms
32,696 KB
testcase_49 AC 314 ms
32,700 KB
testcase_50 AC 309 ms
32,720 KB
testcase_51 AC 433 ms
31,416 KB
testcase_52 AC 332 ms
31,548 KB
testcase_53 AC 217 ms
31,420 KB
testcase_54 AC 230 ms
31,416 KB
testcase_55 AC 220 ms
31,288 KB
testcase_56 AC 251 ms
27,504 KB
testcase_57 AC 213 ms
24,032 KB
testcase_58 AC 200 ms
22,252 KB
testcase_59 AC 217 ms
25,840 KB
testcase_60 AC 236 ms
22,132 KB
testcase_61 AC 289 ms
27,132 KB
testcase_62 AC 200 ms
23,232 KB
testcase_63 AC 273 ms
28,264 KB
testcase_64 AC 333 ms
31,888 KB
testcase_65 AC 177 ms
19,400 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 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("inline")
#pragma GCC optimize("unroll-all-loops")
#ifdef __AVX512F__
#pragma GCC target("avx512f")
#pragma GCC target("avx512er")
#pragma GCC target("avx512cd")
#pragma GCC target("avx512pf")
#pragma GCC target("avx512dq")
#pragma GCC target("avx512bw")
#pragma GCC target("avx512vl")
#pragma GCC target("avx512ifma")
#pragma GCC target("avx512vbmi")
#else
#pragma GCC target("avx2")
#endif
#pragma GCC optimize("Ofast")
#pragma GCC optimize("omit-frame-pointer")
#pragma GCC optimize("inline")
#pragma GCC optimize("unroll-all-loops")
#pragma GCC optimize("fast-math")

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++;
		}
	}
	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];
			A[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(A[change2.top().second]==-1){
					change2.pop();
					continue;
				}
				tree.add(change2.top().first,-1);
				tree.add(A[change2.top().second],1);
				A[change2.top().second]=-1;
				change2.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