結果

問題 No.1332 Range Nearest Query
ユーザー snrnsidysnrnsidy
提出日時 2021-11-10 02:53:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,981 bytes
コンパイル時間 3,866 ms
コンパイル使用メモリ 237,020 KB
実行使用メモリ 36,212 KB
最終ジャッジ日時 2024-11-19 12:51:41
合計ジャッジ時間 116,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 2 ms
25,200 KB
testcase_02 AC 2 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 154 ms
28,976 KB
testcase_27 AC 163 ms
36,112 KB
testcase_28 AC 38 ms
13,764 KB
testcase_29 AC 41 ms
28,624 KB
testcase_30 AC 41 ms
13,764 KB
testcase_31 AC 32 ms
15,300 KB
testcase_32 AC 43 ms
13,768 KB
testcase_33 AC 44 ms
20,196 KB
testcase_34 AC 37 ms
13,764 KB
testcase_35 AC 37 ms
13,768 KB
testcase_36 AC 37 ms
13,760 KB
testcase_37 AC 40 ms
24,564 KB
testcase_38 TLE -
testcase_39 WA -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3") 
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma") 
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") 
#pragma GCC optimization ("unroll-loops")
#include <bits/stdc++.h>
 
using namespace std;

int sq;

struct Query {
    int idx, l, r, val;
    int V;
    int ans;
    Query(int ii, int ll, int rr,int vv) :idx(ii), l(ll), r(rr), val(vv), V(l / sq) {}
};

int N, M;
int arr[300010];
set <int> S;

int main(void) 
{
    cin.tie(0);
    ios::sync_with_stdio(false);

    cin >> N;
    vector <int> v(N + 1);

    sq = (int)sqrt(N);

    for (int n = 0; n < N; n++)
    {
        cin >> arr[n];
    }

    vector<Query> save;
    cin >> M;
    for (int m = 0; m < M; m++) 
    {
        int u, v, x;

        cin >> u >> v >> x;
        u--;
        v--;
        save.emplace_back(Query(m, u, v, x));

    }

    sort(save.begin(), save.end(), [&](Query const& a, Query const& b)->bool {
        if (a.V == b.V) return a.r < b.r;
        return a.V < b.V;
        });


    int L = save[0].l, R = save[0].l - 1;

    for (int m = 0; m < M; m++) {

        while (L < save[m].l) 
        {
            S.erase(arr[L]);
            L++;
        }

        while (L > save[m].l) 
        {
            L--;
            S.insert(arr[L]);
        }

        while (R < save[m].r) 
        {
            R++;
            S.insert(arr[R]);
        }

        while (R > save[m].r) 
        {
            S.erase(arr[R]);
            R--;
        }

		int X = save[m].val;
		auto it = S.lower_bound(X);
		int res = 1e9;
		if(it!=S.end())
		{
			int d = *it - X;
			res = min(res,d);
		}
		if(it!=S.begin())
		{
			it--;
			int d = X - *it;
			res = min(res,d);
		}
        save[m].ans = res;
    }

    sort(save.begin(), save.end(), [&](Query const& a, Query const& b)->bool 
    {
        return a.idx < b.idx;
    });

    for (int m = 0; m < M; m++)
    {
        cout << save[m].ans << '\n';
    }

    return 0;

}
0