結果

問題 No.1332 Range Nearest Query
ユーザー TonalidadeHidricaTonalidadeHidrica
提出日時 2021-01-08 22:29:36
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 384 ms / 2,500 ms
コード長 5,107 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 207,220 KB
実行使用メモリ 14,960 KB
最終ジャッジ日時 2023-08-10 10:28:27
合計ジャッジ時間 15,630 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,876 KB
testcase_01 AC 9 ms
8,772 KB
testcase_02 AC 8 ms
8,884 KB
testcase_03 AC 282 ms
14,012 KB
testcase_04 AC 271 ms
13,872 KB
testcase_05 AC 277 ms
13,716 KB
testcase_06 AC 219 ms
14,296 KB
testcase_07 AC 224 ms
14,496 KB
testcase_08 AC 222 ms
14,312 KB
testcase_09 AC 222 ms
14,220 KB
testcase_10 AC 227 ms
14,240 KB
testcase_11 AC 227 ms
14,228 KB
testcase_12 AC 228 ms
14,304 KB
testcase_13 AC 222 ms
14,344 KB
testcase_14 AC 223 ms
14,476 KB
testcase_15 AC 219 ms
14,960 KB
testcase_16 AC 307 ms
14,620 KB
testcase_17 AC 299 ms
14,268 KB
testcase_18 AC 289 ms
14,760 KB
testcase_19 AC 384 ms
14,800 KB
testcase_20 AC 298 ms
14,300 KB
testcase_21 AC 306 ms
14,332 KB
testcase_22 AC 293 ms
14,104 KB
testcase_23 AC 301 ms
14,408 KB
testcase_24 AC 297 ms
14,508 KB
testcase_25 AC 299 ms
14,528 KB
testcase_26 AC 184 ms
14,284 KB
testcase_27 AC 180 ms
14,312 KB
testcase_28 AC 74 ms
10,840 KB
testcase_29 AC 75 ms
10,856 KB
testcase_30 AC 75 ms
11,000 KB
testcase_31 AC 70 ms
10,836 KB
testcase_32 AC 76 ms
10,912 KB
testcase_33 AC 76 ms
10,976 KB
testcase_34 AC 72 ms
10,944 KB
testcase_35 AC 73 ms
10,988 KB
testcase_36 AC 72 ms
10,788 KB
testcase_37 AC 73 ms
10,984 KB
testcase_38 AC 197 ms
12,908 KB
testcase_39 AC 103 ms
10,836 KB
testcase_40 AC 296 ms
14,244 KB
testcase_41 AC 142 ms
11,664 KB
testcase_42 AC 196 ms
12,440 KB
testcase_43 AC 161 ms
12,296 KB
testcase_44 AC 250 ms
13,716 KB
testcase_45 AC 230 ms
13,132 KB
testcase_46 AC 184 ms
12,388 KB
testcase_47 AC 215 ms
13,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef ATCODER_SEGTREE_HPP
#define ATCODER_SEGTREE_HPP 1

#include <algorithm>
#ifndef ATCODER_INTERNAL_BITOP_HPP
#define ATCODER_INTERNAL_BITOP_HPP 1

#ifdef _MSC_VER
#include <intrin.h>
#endif

namespace atcoder {

namespace internal {

// @param n `0 <= n`
// @return minimum non-negative `x` s.t. `n <= 2**x`
int ceil_pow2(int n) {
    int x = 0;
    while ((1U << x) < (unsigned int)(n)) x++;
    return x;
}

// @param n `1 <= n`
// @return minimum non-negative `x` s.t. `(n & (1 << x)) != 0`
int bsf(unsigned int n) {
#ifdef _MSC_VER
    unsigned long index;
    _BitScanForward(&index, n);
    return index;
#else
    return __builtin_ctz(n);
#endif
}

}  // namespace internal

}  // namespace atcoder

#endif  // ATCODER_INTERNAL_BITOP_HPP
#include <cassert>
#include <vector>

namespace atcoder {

template <class S, S (*op)(S, S), S (*e)()> struct segtree {
  public:
    segtree() : segtree(0) {}
    segtree(int n) : segtree(std::vector<S>(n, e())) {}
    segtree(const std::vector<S>& v) : _n(int(v.size())) {
        log = internal::ceil_pow2(_n);
        size = 1 << log;
        d = std::vector<S>(2 * size, e());
        for (int i = 0; i < _n; i++) d[size + i] = v[i];
        for (int i = size - 1; i >= 1; i--) {
            update(i);
        }
    }

    void set(int p, S x) {
        assert(0 <= p && p < _n);
        p += size;
        d[p] = x;
        for (int i = 1; i <= log; i++) update(p >> i);
    }

    S get(int p) {
        assert(0 <= p && p < _n);
        return d[p + size];
    }

    S prod(int l, int r) {
        assert(0 <= l && l <= r && r <= _n);
        S sml = e(), smr = e();
        l += size;
        r += size;

        while (l < r) {
            if (l & 1) sml = op(sml, d[l++]);
            if (r & 1) smr = op(d[--r], smr);
            l >>= 1;
            r >>= 1;
        }
        return op(sml, smr);
    }

    S all_prod() { return d[1]; }

    template <bool (*f)(S)> int max_right(int l) {
        return max_right(l, [](S x) { return f(x); });
    }
    template <class F> int max_right(int l, F f) {
        assert(0 <= l && l <= _n);
        assert(f(e()));
        if (l == _n) return _n;
        l += size;
        S sm = e();
        do {
            while (l % 2 == 0) l >>= 1;
            if (!f(op(sm, d[l]))) {
                while (l < size) {
                    l = (2 * l);
                    if (f(op(sm, d[l]))) {
                        sm = op(sm, d[l]);
                        l++;
                    }
                }
                return l - size;
            }
            sm = op(sm, d[l]);
            l++;
        } while ((l & -l) != l);
        return _n;
    }

    template <bool (*f)(S)> int min_left(int r) {
        return min_left(r, [](S x) { return f(x); });
    }
    template <class F> int min_left(int r, F f) {
        assert(0 <= r && r <= _n);
        assert(f(e()));
        if (r == 0) return 0;
        r += size;
        S sm = e();
        do {
            r--;
            while (r > 1 && (r % 2)) r >>= 1;
            if (!f(op(d[r], sm))) {
                while (r < size) {
                    r = (2 * r + 1);
                    if (f(op(d[r], sm))) {
                        sm = op(d[r], sm);
                        r--;
                    }
                }
                return r + 1 - size;
            }
            sm = op(d[r], sm);
        } while ((r & -r) != r);
        return 0;
    }

  private:
    int _n, size, log;
    std::vector<S> d;

    void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); }
};

}  // namespace atcoder

#endif  // ATCODER_SEGTREE_HPP

#include <bits/stdc++.h>
using namespace std;
#define REP(i, n) FOR(i, 0, (n))
#define FOR(i, a, b) for(int i=(a); i<(b); i++)
#define LAR(a, b) ((a)=max((a),(b)))
#define SML(a, b) ((a)=min((a),(b)))
using ll = long long;
using ld = long double;
using vi = vector<int>;
using vl = vector<ll>;
using pii = pair<int, int>;
using vpii = vector<pair<int, int>>;
template<typename T>
using pque = priority_queue<T, vector<T>, greater<T>>;
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define ALL(a) (a).begin(), (a).end()
#ifdef LOCAL_DEBUG
#define DEBUG(...) printf(__VA_ARGS__)
#else
#define DEBUG(...)
#endif
using namespace atcoder;

int op(int a, int b){ return min(a, b); }
int e(){ return 2'000'000'005; }

#define N 312345
#define Q 112345
int x[N];
int ans[Q];
int s[Q], t[Q], y[Q];
priority_queue<pair<int, int>> que;

int main(){
	int n; scanf("%d", &n);
	FOR(i, 1, n+1) scanf("%d", x+i);
	int q; scanf("%d", &q);
	REP(i, q) scanf("%d%d%d", s+i, t+i, y+i);

	fill(ans, ans+q, INT_MAX);
	REP(ii, 2){
		FOR(i, 1, n+1) que.emplace(x[i], i);
		REP(i, q) que.emplace(y[i], -i);
		segtree<int, op, e> seg(N);
		while(que.size()){
			auto i = que.top().second; que.pop();
			if(i > 0){
				seg.set(i, x[i]);
			} else {
				i *= -1;
				// DEBUG("%d %d\n", seg.prod(s[i], t[i]+1), y[i]);
				SML(ans[i], seg.prod(s[i], t[i]+1) - y[i]);
			}
		}
		FOR(i, 1, n+1) x[i] = 1'000'000'000 - x[i];
		REP(i, q) y[i] = 1'000'000'000 - y[i];
	}
	REP(i, q) printf("%d\n", ans[i]);
}


0