結果

問題 No.1332 Range Nearest Query
ユーザー rlangevinrlangevin
提出日時 2023-11-15 12:38:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,868 bytes
コンパイル時間 5,250 ms
コンパイル使用メモリ 273,384 KB
実行使用メモリ 13,480 KB
最終ジャッジ日時 2023-11-15 12:38:17
合計ジャッジ時間 11,054 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using P = pair<int, int>;
using mint = modint998244353;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
const int inf = 1010101010;
int B;
set<int> S;

struct query
{
    int l;
    int r;
    int x;
    int ind;
};

bool comp(query &a, query &b)
{
    int ra = a.r / B;
    int rb = b.r / B;
    if (ra != rb)
    {
        return ra < rb;
    }
    return a.l < b.l;
}

void add(int i, vector<int> &A)
{
    S.insert(A[i]);
    return;
}

void del(int i, vector<int> &A)
{
    S.erase(A[i]);
    return;
}

int main()
{
    int N;
    cin >> N;
    vector<int> X(N);

    rep(i, N)
    {
        cin >> X[i];
    }
    int Q;
    cin >> Q;
    B = ceil(sqrt(N));
    vector<query> Data(Q);
    rep(i, Q)
    {
        int l, r, x;
        cin >> l >> r >> x;
        l--, r--;
        Data[i].l = l;
        Data[i].r = r;
        Data[i].x = x;
        Data[i].ind = i;
    }
    sort(Data.begin(), Data.end(), comp);
    vector<int> ans(Q);
    int now_l = 0, now_r = 0;
    S.insert(inf);
    S.insert(-inf);
    S.insert(X[0]);
    for (int i = 0; i < Q; i++)
    {
        int l = Data[i].l, r = Data[i].r, x = Data[i].x, ind = Data[i].ind;
        while (r > now_r)
        {
            add(now_r + 1, X);
            now_r++;
        }
        while (r < now_r)
        {
            del(now_r, X);
            now_r--;
        }
        while (l > now_l)
        {
            del(now_l, X);
            now_l++;
        }
        while (l < now_l)
        {
            add(now_l - 1, X);
            now_l--;
        }
        auto iter = S.lower_bound(x);
        int val = *iter - x;
        iter--;
        val = min(val, x - *iter);        
        ans[ind] = val;
    }
    rep(i, Q)
    {
        printf("%d\n", ans[i]);
    }
}
0