結果

問題 No.1332 Range Nearest Query
ユーザー kotatsugamekotatsugame
提出日時 2021-01-08 23:17:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,005 bytes
コンパイル時間 1,307 ms
コンパイル使用メモリ 71,972 KB
実行使用メモリ 139,520 KB
最終ジャッジ日時 2024-11-16 17:42:35
合計ジャッジ時間 112,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
13,644 KB
testcase_02 AC 1 ms
13,764 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
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 1,007 ms
75,136 KB
testcase_27 AC 740 ms
105,856 KB
testcase_28 AC 42 ms
10,624 KB
testcase_29 AC 50 ms
73,728 KB
testcase_30 AC 56 ms
10,624 KB
testcase_31 AC 30 ms
18,560 KB
testcase_32 AC 76 ms
10,624 KB
testcase_33 AC 73 ms
26,624 KB
testcase_34 AC 33 ms
10,624 KB
testcase_35 AC 40 ms
26,624 KB
testcase_36 AC 40 ms
10,624 KB
testcase_37 AC 51 ms
47,872 KB
testcase_38 TLE -
testcase_39 AC 1,941 ms
31,488 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:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]

ソースコード

diff #

#line 1 "a.cpp"
#include<cstdio>
#include<algorithm>
#include<vector>
using namespace std;
#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 6 "a.cpp"
int N;
main()
{
	scanf("%d",&N);
	vector<pair<int,int> >Xi(N);
	for(int i=0;i<N;i++)
	{
		int x;
		scanf("%d",&x);
		Xi[i]=make_pair(x,i);
	}
	sort(Xi.begin(),Xi.end());
	vector<int>id(N),X(N);
	for(int i=0;i<N;i++)
	{
		id[i]=Xi[i].second;
		X[i]=Xi[i].first;
	}
	rangefreq<int>P(id);
	int Q;
	scanf("%d",&Q);
	for(;Q--;)
	{
		int l,r,x;
		scanf("%d%d%d",&l,&r,&x);
		l--;
		int ans=1e9;
		{
			auto it=upper_bound(X.begin(),X.end(),x);
			if(it!=X.begin())
			{
				int L=0,R=it-X.begin();
				int pos=R;
				int cnt=P.query(0,pos,r)-P.query(0,pos,l);
				if(cnt>0)
				{
					while(R-L>1)
					{
						int mid=(L+R)/2;
						if(P.query(mid,pos,r)-P.query(mid,pos,l)>0)L=mid;
						else R=mid;
					}
					ans=min(ans,x-X[L]);
				}
			}
		}
		{
			auto it=lower_bound(X.begin(),X.end(),x);
			if(it!=X.end())
			{
				int L=it-X.begin(),R=N;
				int pos=L;
				int cnt=P.query(pos,N,r)-P.query(pos,N,l);
				if(cnt>0)
				{
					while(R-L>1)
					{
						int mid=(L+R)/2;
						if(P.query(pos,mid,r)-P.query(pos,mid,l)>0)R=mid;
						else L=mid;
					}
					ans=min(ans,X[L]-x);
				}
			}
		}
		printf("%d\n",ans);
	}
}
0