結果

問題 No.1332 Range Nearest Query
ユーザー kappybarkappybar
提出日時 2021-01-08 23:32:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,744 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 177,360 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-11-16 18:30:29
合計ジャッジ時間 107,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
23,680 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2,378 ms
16,384 KB
testcase_07 AC 2,390 ms
31,488 KB
testcase_08 AC 2,363 ms
16,384 KB
testcase_09 AC 2,404 ms
31,616 KB
testcase_10 AC 2,379 ms
16,512 KB
testcase_11 AC 2,445 ms
31,488 KB
testcase_12 AC 2,370 ms
16,384 KB
testcase_13 AC 2,386 ms
31,488 KB
testcase_14 AC 2,392 ms
16,384 KB
testcase_15 AC 2,428 ms
31,488 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 306 ms
25,728 KB
testcase_27 AC 309 ms
25,856 KB
testcase_28 AC 71 ms
10,624 KB
testcase_29 AC 75 ms
25,216 KB
testcase_30 AC 74 ms
10,496 KB
testcase_31 AC 68 ms
17,792 KB
testcase_32 AC 76 ms
10,496 KB
testcase_33 AC 79 ms
15,104 KB
testcase_34 AC 70 ms
10,496 KB
testcase_35 AC 73 ms
10,752 KB
testcase_36 AC 71 ms
10,624 KB
testcase_37 AC 73 ms
20,736 KB
testcase_38 TLE -
testcase_39 AC 462 ms
11,008 KB
testcase_40 TLE -
testcase_41 AC 2,361 ms
8,192 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define chmin(x,y) x = min((x),(y));
#define chmax(x,y) x = max((x),(y));
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
const int INF = 1e9;
const long long LINF = 1e17;
const int MOD = 1000000007;
//const int MOD = 998244353;
const double PI = 3.14159265358979323846;

struct query{
    int l,r,y;
};

int main(){
    int n;
    cin >> n;
    vector<int> x(n);
    rep(i,n) cin >> x[i];
    int q;
    cin >> q;
    vector<int> l(q),r(q),y(q),qi(q);
    rep(i,q){
        cin >> l[i] >> r[i] >> y[i];
        --l[i];
        qi[i] = i;
    }
    int sq = sqrt(n);
    sort(qi.begin(),qi.end(),[&](int i,int j){
        if(l[i] / sq != l[j] / sq) return l[i] < l[j];
        if((l[i] / sq)%2 == 1) return r[i] > r[j];
        return r[i] < r[j];
    });
    multiset<int> st;

    auto add = [&](int id){
        if(id<0||n<=id) return;
        st.insert(x[id]);
    };
 
    auto del = [&](int id){
        if(id<0||n<=id) return;
        st.erase(st.find(x[id]));
    };
 
    
    vector<int> queryans(q);
    int nl = 0,nr = 0;
    for(int i:qi){
        while(nl > l[i]) --nl,add(nl);
        while(nr < r[i]) add(nr),++nr;
        while(nl < l[i]) del(nl),++nl;
        while(nr > r[i]) --nr,del(nr);

        auto it = st.lower_bound(y[i]);
        int ans = INF;
        if(it == st.end()){
            ans = abs(y[i]-*(--it));
        }else if(it == st.begin()){
            ans = abs(y[i]-*it);
        }else{
            ans = abs(y[i]-*it);
            chmin(ans,abs(y[i]-*(--it)));
        }
        queryans[i] = ans;
    }
 
    rep(i,q) printf("%d\n",queryans[i]);
    return 0;

    return 0;
}
0