結果

問題 No.1332 Range Nearest Query
ユーザー penguinmanpenguinman
提出日時 2020-10-30 03:16:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 462 ms / 2,500 ms
コード長 2,406 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 182,020 KB
実行使用メモリ 31,712 KB
最終ジャッジ日時 2024-07-23 16:59:34
合計ジャッジ時間 18,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 422 ms
27,112 KB
testcase_04 AC 409 ms
27,340 KB
testcase_05 AC 397 ms
27,212 KB
testcase_06 AC 235 ms
30,132 KB
testcase_07 AC 242 ms
30,172 KB
testcase_08 AC 284 ms
30,052 KB
testcase_09 AC 243 ms
30,084 KB
testcase_10 AC 244 ms
30,112 KB
testcase_11 AC 261 ms
30,080 KB
testcase_12 AC 247 ms
30,108 KB
testcase_13 AC 241 ms
30,052 KB
testcase_14 AC 243 ms
30,036 KB
testcase_15 AC 250 ms
30,108 KB
testcase_16 AC 452 ms
31,596 KB
testcase_17 AC 462 ms
31,528 KB
testcase_18 AC 437 ms
31,576 KB
testcase_19 AC 438 ms
31,592 KB
testcase_20 AC 428 ms
31,572 KB
testcase_21 AC 433 ms
31,568 KB
testcase_22 AC 425 ms
31,568 KB
testcase_23 AC 430 ms
31,712 KB
testcase_24 AC 437 ms
31,576 KB
testcase_25 AC 430 ms
31,460 KB
testcase_26 AC 170 ms
27,772 KB
testcase_27 AC 163 ms
27,640 KB
testcase_28 AC 36 ms
6,092 KB
testcase_29 AC 38 ms
6,184 KB
testcase_30 AC 38 ms
6,032 KB
testcase_31 AC 32 ms
5,972 KB
testcase_32 AC 39 ms
6,040 KB
testcase_33 AC 40 ms
6,036 KB
testcase_34 AC 34 ms
6,408 KB
testcase_35 AC 35 ms
6,096 KB
testcase_36 AC 35 ms
6,088 KB
testcase_37 AC 37 ms
6,060 KB
testcase_38 AC 319 ms
20,104 KB
testcase_39 AC 124 ms
7,244 KB
testcase_40 AC 432 ms
30,880 KB
testcase_41 AC 190 ms
11,232 KB
testcase_42 AC 286 ms
19,368 KB
testcase_43 AC 228 ms
14,688 KB
testcase_44 AC 367 ms
24,836 KB
testcase_45 AC 345 ms
23,180 KB
testcase_46 AC 264 ms
17,548 KB
testcase_47 AC 310 ms
21,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using std::cin;
using std::cout;
using std::vector;
using ll=long long;
#define endl "\n";
const int inf=INT_MAX;
//セグ木
struct Segtree{
    int N;
    vector<int> node;
    Segtree(int n){
        N=1;
        while(N<n) N*=2;
        node.resize(N*2-1,-inf);
    }
    void update(int ind,int val){
        ind+=N-1;
        node[ind]=val;
        while(ind){
            ind=(ind-1)/2;
            node[ind]=std::max(node[ind*2+1],node[ind*2+2]);
        }
    }
    int lower_bound(int left,int val,int now=0,int l=0,int r=-1){
        if(r<0) r=N;
        if(node[now]<val||r<=left) return r;
        if(now>=N-1) return l;
        int left_ind=lower_bound(left,val,now*2+1,l,(l+r)/2);
        if(left_ind==(l+r)/2) return lower_bound(left,val,now*2+2,(l+r)/2,r);
        return left_ind;
    }
};
int main(){    
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    //入力、宣言
    int N; cin>>N;
    vector<int> X(N);
    for(int i=0;i<N;i++) cin>>X[i];
    int Q; cin>>Q;
    vector<int> l(Q),r(Q),x(Q),ans(Q,inf);
    for(int i=0;i<Q;i++){
        cin>>l[i]>>r[i]>>x[i];
        l[i]--;
        r[i]--;
    }
    //本題。1 回目では x≤X_i を満たすものについて、2 回目では x≥X_i を満たすものについて求めている。
    for(int _=0;_<2;_++){
        //座圧
        vector<int> comp(N),rev(N);
        {
            vector<std::pair<int,int>> memo(N);
            for(int i=0;i<N;i++) memo[i]=std::make_pair(X[i],i);
            sort(memo.begin(),memo.end());
            for(int i=0;i<N;i++){
                comp[memo[i].second]=i;
                rev[i]=memo[i].first;
            }
        }
        vector<vector<int>> left(N),ind(N);
        for(int i=0;i<Q;i++){
            left[r[i]].push_back(l[i]);
            ind[r[i]].push_back(i);
        }
        Segtree seg(N);
        for(int i=0;i<N;i++){
            seg.update(comp[i],i);
            for(int j=0;j<left[i].size();j++){
                int l=lower_bound(rev.begin(),rev.end(),x[ind[i][j]])-rev.begin();
                int index=seg.lower_bound(l,left[i][j]);
                if(index<N) ans[ind[i][j]]=std::min(ans[ind[i][j]],rev[index]-x[ind[i][j]]);
            }
        }
        //上下を反転
        for(int i=0;i<N;i++) X[i]=-X[i];
        for(int i=0;i<Q;i++) x[i]=-x[i];
    }
    for(int i=0;i<Q;i++) cout<<ans[i]<<endl;
}
0