結果

問題 No.2809 Sort Query
ユーザー kotatsugamekotatsugame
提出日時 2024-07-12 21:57:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,620 bytes
コンパイル時間 1,178 ms
コンパイル使用メモリ 92,324 KB
実行使用メモリ 38,052 KB
最終ジャッジ日時 2024-07-12 21:57:51
合計ジャッジ時間 45,380 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,652 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 572 ms
35,100 KB
testcase_12 AC 589 ms
35,052 KB
testcase_13 AC 576 ms
35,172 KB
testcase_14 AC 598 ms
35,296 KB
testcase_15 AC 568 ms
35,176 KB
testcase_16 AC 605 ms
35,104 KB
testcase_17 AC 564 ms
35,152 KB
testcase_18 AC 604 ms
35,200 KB
testcase_19 AC 584 ms
35,124 KB
testcase_20 AC 600 ms
35,176 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 451 ms
34,240 KB
testcase_32 AC 435 ms
33,936 KB
testcase_33 AC 455 ms
33,948 KB
testcase_34 AC 448 ms
33,964 KB
testcase_35 AC 458 ms
34,048 KB
testcase_36 AC 533 ms
35,084 KB
testcase_37 AC 506 ms
35,176 KB
testcase_38 AC 568 ms
35,136 KB
testcase_39 AC 512 ms
35,156 KB
testcase_40 AC 508 ms
35,156 KB
testcase_41 AC 434 ms
31,628 KB
testcase_42 AC 419 ms
32,000 KB
testcase_43 AC 438 ms
31,628 KB
testcase_44 AC 420 ms
31,500 KB
testcase_45 AC 444 ms
31,808 KB
testcase_46 AC 341 ms
31,812 KB
testcase_47 AC 341 ms
31,968 KB
testcase_48 AC 354 ms
31,756 KB
testcase_49 AC 343 ms
31,632 KB
testcase_50 AC 345 ms
31,816 KB
testcase_51 AC 733 ms
31,632 KB
testcase_52 AC 777 ms
31,632 KB
testcase_53 AC 647 ms
32,644 KB
testcase_54 AC 570 ms
31,628 KB
testcase_55 AC 602 ms
31,628 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 AC 3 ms
7,524 KB
権限があれば一括ダウンロードができます

ソースコード

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());
	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];
		upd(fA[i],1);
	}
	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)
		{
			long oa=gt(K[i]);
			upd(oa,-1);
			upd(X[i],1);
			A[K[i]]=X[i];
		}
		else if(op[i]==2)A.clear();
		else cout<<gt(K[i])<<"\n";
	}
}
0