結果

問題 No.2809 Sort Query
ユーザー highlighterhighlighter
提出日時 2024-04-21 17:44:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,707 bytes
コンパイル時間 3,890 ms
コンパイル使用メモリ 270,208 KB
実行使用メモリ 43,436 KB
最終ジャッジ日時 2024-07-12 20:52:45
合計ジャッジ時間 31,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 431 ms
34,972 KB
testcase_02 AC 272 ms
35,020 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 219 ms
32,060 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 218 ms
31,860 KB
testcase_10 AC 222 ms
31,720 KB
testcase_11 AC 247 ms
34,992 KB
testcase_12 AC 217 ms
35,232 KB
testcase_13 AC 224 ms
35,908 KB
testcase_14 AC 221 ms
35,704 KB
testcase_15 AC 227 ms
35,704 KB
testcase_16 AC 228 ms
35,416 KB
testcase_17 AC 224 ms
35,244 KB
testcase_18 AC 223 ms
35,208 KB
testcase_19 AC 223 ms
36,244 KB
testcase_20 AC 224 ms
35,108 KB
testcase_21 AC 361 ms
43,436 KB
testcase_22 AC 369 ms
42,468 KB
testcase_23 AC 369 ms
42,756 KB
testcase_24 AC 371 ms
43,300 KB
testcase_25 AC 374 ms
42,876 KB
testcase_26 AC 320 ms
37,980 KB
testcase_27 AC 306 ms
38,416 KB
testcase_28 AC 315 ms
37,696 KB
testcase_29 AC 311 ms
37,656 KB
testcase_30 AC 309 ms
37,780 KB
testcase_31 AC 182 ms
33,356 KB
testcase_32 AC 180 ms
32,276 KB
testcase_33 AC 183 ms
32,900 KB
testcase_34 AC 183 ms
32,592 KB
testcase_35 AC 187 ms
32,280 KB
testcase_36 AC 194 ms
35,848 KB
testcase_37 AC 193 ms
35,576 KB
testcase_38 AC 196 ms
35,632 KB
testcase_39 AC 196 ms
35,332 KB
testcase_40 AC 194 ms
36,024 KB
testcase_41 AC 293 ms
31,428 KB
testcase_42 AC 290 ms
32,588 KB
testcase_43 AC 289 ms
31,836 KB
testcase_44 AC 287 ms
31,560 KB
testcase_45 AC 300 ms
32,032 KB
testcase_46 AC 242 ms
31,616 KB
testcase_47 AC 235 ms
32,872 KB
testcase_48 AC 236 ms
31,448 KB
testcase_49 AC 246 ms
32,316 KB
testcase_50 AC 239 ms
32,000 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 180 ms
21,024 KB
testcase_61 AC 224 ms
26,492 KB
testcase_62 AC 169 ms
22,732 KB
testcase_63 WA -
testcase_64 AC 266 ms
30,956 KB
testcase_65 AC 147 ms
18,688 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 2 ms
6,940 KB
testcase_69 WA -
testcase_70 AC 2 ms
6,944 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){
		//A[0]+A[1]+...+A[k-1]<=xとなる最大のk
		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<int> B(N,-1);
	Fenwick_tree tree(relation.size());
	for(int i=0;i<N;i++){
		tree.add(A[i],1);
	}
	stack<int> change;
	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