結果
問題 | No.1332 Range Nearest Query |
ユーザー | snow39 |
提出日時 | 2021-01-08 22:32:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,805 bytes |
コンパイル時間 | 1,659 ms |
コンパイル使用メモリ | 119,988 KB |
実行使用メモリ | 51,384 KB |
最終ジャッジ日時 | 2024-11-16 13:26:29 |
合計ジャッジ時間 | 24,281 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 568 ms
47,020 KB |
testcase_04 | AC | 571 ms
47,148 KB |
testcase_05 | AC | 608 ms
47,016 KB |
testcase_06 | AC | 388 ms
49,876 KB |
testcase_07 | AC | 410 ms
50,008 KB |
testcase_08 | AC | 385 ms
49,872 KB |
testcase_09 | AC | 405 ms
50,044 KB |
testcase_10 | AC | 396 ms
49,872 KB |
testcase_11 | AC | 385 ms
49,880 KB |
testcase_12 | AC | 400 ms
50,008 KB |
testcase_13 | AC | 389 ms
50,004 KB |
testcase_14 | AC | 406 ms
50,028 KB |
testcase_15 | AC | 391 ms
49,920 KB |
testcase_16 | AC | 690 ms
51,384 KB |
testcase_17 | AC | 667 ms
51,384 KB |
testcase_18 | AC | 671 ms
51,128 KB |
testcase_19 | AC | 688 ms
51,256 KB |
testcase_20 | AC | 660 ms
51,260 KB |
testcase_21 | AC | 658 ms
51,268 KB |
testcase_22 | AC | 698 ms
51,252 KB |
testcase_23 | AC | 657 ms
51,260 KB |
testcase_24 | AC | 647 ms
51,132 KB |
testcase_25 | AC | 681 ms
51,256 KB |
testcase_26 | AC | 325 ms
42,456 KB |
testcase_27 | AC | 317 ms
48,988 KB |
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 | AC | 431 ms
32,756 KB |
testcase_39 | RE | - |
testcase_40 | AC | 641 ms
50,196 KB |
testcase_41 | RE | - |
testcase_42 | AC | 411 ms
31,844 KB |
testcase_43 | RE | - |
testcase_44 | AC | 519 ms
42,908 KB |
testcase_45 | AC | 498 ms
40,072 KB |
testcase_46 | AC | 352 ms
29,968 KB |
testcase_47 | AC | 436 ms
37,468 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #include <tuple> #define mkp make_pair #define mkt make_tuple #define rep(i,n) for(int i = 0; i < (n); ++i) #define all(v) v.begin(),v.end() using namespace std; typedef long long ll; const ll MOD=1e9+7; template<class T> void chmin(T &a,const T &b){if(a>b) a=b;} template<class T> void chmax(T &a,const T &b){if(a<b) a=b;} #include <functional> #include <climits> //SegmentTree<int> seg(N,[](int a,int b){return min(a,b);},INT_MAX); template< typename T> class SegmentTree{ private: void resize(int size){ n=1; while(n<size) n*=2; tree.resize(2*n-1,def); } public: using F = function<T(T,T)>; int n; vector<T> tree; F operation; T def; SegmentTree(){} SegmentTree(int size,F _operation,T _def):operation(_operation),def(_def){ resize(size); } void embody(int size,F _operation,T _def){ operation=_operation; def=_def; resize(size); } void initialize(const vector<T> &v){ int size=v.size(); resize(size); for(int i=0;i<size;i++) tree[i+n-1]=v[i]; for(int i=n-2;i>=0;i--) tree[i]=operation(tree[2*i+1],tree[2*i+2]); } void update(int index,T value){ index+=n-1; tree[index]=value; while(index>0){ index=(index-1)/2; tree[index]=operation(tree[2*index+1],tree[2*index+2]); } } T query(int a,int b,int k=0,int l=0,int r=-1){//[a,b) if(r<0) r=n; if(r<=a||b<=l) return def; else if(a<=l&&r<=b) return tree[k]; else{ T lval=query(a,b,2*k+1,l,(l+r)/2); T rval=query(a,b,2*k+2,(l+r)/2,r); return operation(lval,rval); } } T get(int index){ return tree[index+n-1]; } int find(int x,int k=0,int l=0,int r=-1){// a[0]+...+a[i]>=x (i:minimal) if(r<0) r=n; if(tree[k]<x) return -1; if(r-l==1) return k-(n-1); if(tree[2*k+1]>=x) return find(x,2*k+1,l,(l+r)/2); else return find(x-tree[2*k+1],2*k+2,(l+r)/2,r); } //right -> change vl to vr (notice doesn't contain b. range [a,b)) int find_left(int a,int b,T x,int k=0,int l=0,int r=-1){// min(a[a],...,a[i])<=x (i:minimal) if(r<0) r=n; if(tree[k]>x||r<=a||b<=l) return -1; if(r-l==1) return k-(n-1); int vl=find_left(a,b,x,2*k+1,l,(l+r)/2); if(vl>=0) return vl; return find_left(a,b,x,2*k+2,(l+r)/2,r); } int find_right(int a,int b,T x,int k=0,int l=0,int r=-1){// min(a[i],...,a[b-1])<=x (i:minimal) if(r<0) r=n; if(tree[k]>x||r<=a||b<=l) return -1; if(r-l==1) return k-(n-1); int vr=find_right(a,b,x,2*k+2,(l+r)/2,r); if(vr>=0) return vr; return find_right(a,b,x,2*k+1,l,(l+r)/2); } }; const ll INF=1e18; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N; cin>>N; vector<ll> X(N); rep(i,N) cin>>X[i]; int Q; cin>>Q; vector<int> L(Q),R(N); vector<ll> Z(Q); rep(i,Q) cin>>L[i]>>R[i]>>Z[i]; rep(i,Q){ L[i]--;R[i]--; } vector<vector<int>> qrys(N); for(int i=0;i<Q;i++) qrys[L[i]].push_back(i); vector<ll> v=X; rep(i,Q) v.push_back(Z[i]); sort(all(v)); v.erase(unique(all(v)),v.end()); int V=v.size(); map<ll,int> mp; rep(i,V) mp[v[i]]=i; SegmentTree<int> seg(V,[](int a,int b){ return min(a,b); },N+1); seg.initialize(vector<int> (V,N+1)); vector<ll> ans(Q,INF); for(int left=N-1;left>=0;left--){ seg.update(mp[X[left]],left); for(auto i:qrys[left]){ int l=L[i]; int r=R[i]; int z=Z[i]; int lid=seg.find_right(0,mp[z],r); int rid=seg.find_left(mp[z],V,r); if(lid!=-1) chmin(ans[i],abs(z-v[lid])); if(rid!=-1) chmin(ans[i],abs(z-v[rid])); } } rep(i,Q) cout<<ans[i]<<"\n"; return 0; }