結果

問題 No.2809 Sort Query
ユーザー kotatsugamekotatsugame
提出日時 2024-07-12 22:01:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,895 bytes
コンパイル時間 1,077 ms
コンパイル使用メモリ 92,260 KB
実行使用メモリ 39,700 KB
最終ジャッジ日時 2024-07-12 22:01:53
合計ジャッジ時間 11,713 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 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 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
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 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 387 ms
32,908 KB
testcase_42 AC 414 ms
34,168 KB
testcase_43 AC 404 ms
32,908 KB
testcase_44 AC 514 ms
32,912 KB
testcase_45 AC 492 ms
32,808 KB
testcase_46 AC 357 ms
33,376 KB
testcase_47 AC 325 ms
32,784 KB
testcase_48 AC 333 ms
33,412 KB
testcase_49 AC 330 ms
32,908 KB
testcase_50 AC 330 ms
32,908 KB
testcase_51 AC 629 ms
32,784 KB
testcase_52 AC 561 ms
33,308 KB
testcase_53 AC 599 ms
33,440 KB
testcase_54 AC 539 ms
32,784 KB
testcase_55 AC 555 ms
33,772 KB
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include<algorithm>
#include<cassert>
using namespace std;
//0-indexed
#include<vector>
#include<cassert>
template<typename T>
struct BIT{
	int N;
	vector<T>bit;
	BIT(int N_=0):N(N_),bit(N_){}
	T sum(int i)
	{
		assert(0<=i&&i<=N);
		T ans=0;
		for(;i>0;i-=i&-i)ans+=bit[i-1];
		return ans;
	}
	void add(int i,T a)
	{
		assert(0<=i&&i<N);
		i++;
		for(;i<=N;i+=i&-i)bit[i-1]+=a;
	}
	int lower_bound(T k)//k<=sum(ret)
	{
		if(k<=0)return 0;
		int ret=0,i=1;
		while((i<<1)<=N)i<<=1;
		for(;i;i>>=1)
		{
			if(ret+i<=N&&bit[ret+i-1]<k)
			{
				ret+=i;
				k-=bit[ret-1];
			}
		}
		return ret+1;
		//ret+1 == N+1 <=> sum<k
	}
};
int N,Q;
long fA[3<<17];
int op[3<<17],K[3<<17];
long X[3<<17];
map<int,long>A;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>Q;
	for(int i=0;i<N;i++)cin>>fA[i];
	vector<long>vs(fA,fA+N);
	for(int i=0;i<Q;i++)
	{
		cin>>op[i];
		if(op[i]==1)
		{
			cin>>K[i]>>X[i];
			K[i]--;
			vs.push_back(X[i]);
		}
		else if(op[i]==2);
		else
		{
			cin>>K[i];
			K[i]--;
		}
	}
	sort(vs.begin(),vs.end());
	vs.erase(unique(vs.begin(),vs.end()),vs.end());
	BIT<int>bit(vs.size());
	BIT<int>cnt(N);
	auto upd=[&](long v,int d){
		bit.add(lower_bound(vs.begin(),vs.end(),v)-vs.begin(),d);
	};
	for(int i=0;i<N;i++)
	{
		A[i]=fA[i];
	}
	auto gt=[&](int k){
		if(A.find(k)!=A.end())return A[k];
		int vi=bit.lower_bound(k+1);
		return vs.at(vi-1);
	};
	for(int i=0;i<Q;i++)
	{
		if(op[i]==1)
		{
			if(A.find(K[i])!=A.end())
			{
				A[K[i]]=X[i];
			}
			else
			{
				int k=K[i];
				k-=cnt.sum(K[i]);
				int vi=bit.lower_bound(k+1);
				long oa=vs.at(vi-1);
				upd(oa,-1);
				A[K[i]]=X[i];
				cnt.add(K[i],1);
			}
		}
		else if(op[i]==2)
		{
			while(!A.empty())
			{
				upd(A.begin()->second,1);
				cnt.add(A.begin()->first,-1);
				A.erase(A.begin());
			}
		}
		else cout<<gt(K[i])<<"\n";
	}
}
0