結果

問題 No.1332 Range Nearest Query
ユーザー kotatsugamekotatsugame
提出日時 2021-01-08 21:52:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,568 bytes
コンパイル時間 1,186 ms
コンパイル使用メモリ 87,564 KB
実行使用メモリ 135,424 KB
最終ジャッジ日時 2024-11-16 11:20:07
合計ジャッジ時間 104,152 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
54,656 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1,625 ms
73,088 KB
testcase_07 AC 1,620 ms
135,424 KB
testcase_08 AC 1,618 ms
73,088 KB
testcase_09 AC 1,618 ms
73,216 KB
testcase_10 AC 1,620 ms
73,216 KB
testcase_11 AC 1,607 ms
135,424 KB
testcase_12 AC 1,615 ms
73,088 KB
testcase_13 AC 1,609 ms
135,424 KB
testcase_14 AC 1,861 ms
73,088 KB
testcase_15 AC 1,720 ms
135,424 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 995 ms
73,088 KB
testcase_27 AC 926 ms
102,912 KB
testcase_28 AC 197 ms
10,624 KB
testcase_29 AC 233 ms
71,680 KB
testcase_30 AC 261 ms
10,624 KB
testcase_31 AC 179 ms
39,424 KB
testcase_32 AC 296 ms
10,624 KB
testcase_33 AC 304 ms
26,112 KB
testcase_34 AC 183 ms
10,624 KB
testcase_35 AC 197 ms
46,720 KB
testcase_36 AC 196 ms
10,624 KB
testcase_37 AC 222 ms
30,976 KB
testcase_38 TLE -
testcase_39 AC 2,170 ms
5,248 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
a.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]

ソースコード

diff #

#line 1 "a.cpp"
#include<iostream>
#include<algorithm>
using namespace std;
#line 1 "/home/kotatsugame/library/datastructure/rangefreq.cpp"
#include<vector>
#line 3 "/home/kotatsugame/library/datastructure/rangefreq.cpp"
template<typename T>
struct rangefreq{
	int n;
	vector<vector<T> >dat;
	rangefreq(const vector<T>&v={})
	{
		n=1;
		while(n<v.size())n<<=1;
		dat.assign(2*n-1,{});
		for(int i=0;i<v.size();i++)dat[i+n-1].push_back(v[i]);
		for(int i=n-2;i>=0;i--)
		{
			dat[i].resize(dat[i*2+1].size()+dat[i*2+2].size());
			merge(dat[i*2+1].begin(),dat[i*2+1].end(),
				dat[i*2+2].begin(),dat[i*2+2].end(),
				dat[i].begin()
			);
		}
	}
	int query(int a,int b,T x,int k=0,int l=0,int r=-1)const//[a,b) count(*<x)
	{
		if(r<0)r=n;
		if(b<=l||r<=a)return 0;
		else if(a<=l&&r<=b)return lower_bound(dat[k].begin(),dat[k].end(),x)-dat[k].begin();
		else return query(a,b,x,k*2+1,l,(l+r)/2)+query(a,b,x,k*2+2,(l+r)/2,r);
	}
};
#line 5 "a.cpp"
int N,X[3<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>X[i];
	rangefreq<int>P(vector<int>(X,X+N));
	int Q;cin>>Q;
	for(;Q--;)
	{
		int l,r,x;cin>>l>>r>>x;l--;
		int ans=1e9;
		{
			int cnt=P.query(l,r,x+1);
			if(cnt>0)
			{
				int L=1,R=x+1;
				while(R-L>1)
				{
					int mid=(L+R)/2;
					if(P.query(l,r,mid)<cnt)L=mid;
					else R=mid;
				}
				ans=min(ans,x-L);
			}
		}
		{
			int cnt=r-l-P.query(l,r,x);
			if(cnt>0)
			{
				int L=x,R=1e9+1;
				while(R-L>1)
				{
					int mid=(L+R)/2;
					if(r-l-P.query(l,r,mid)<cnt)R=mid;
					else L=mid;
				}
				ans=min(ans,L-x);
			}
		}
		cout<<ans<<endl;
	}
}
0