結果

問題 No.1332 Range Nearest Query
ユーザー TonalidadeHidricaTonalidadeHidrica
提出日時 2021-01-08 22:26:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,070 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 208,412 KB
実行使用メモリ 14,724 KB
最終ジャッジ日時 2024-04-28 03:47:55
合計ジャッジ時間 16,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
8,916 KB
testcase_01 AC 10 ms
8,920 KB
testcase_02 AC 11 ms
8,924 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 242 ms
14,596 KB
testcase_07 AC 240 ms
14,468 KB
testcase_08 AC 241 ms
14,596 KB
testcase_09 AC 240 ms
14,596 KB
testcase_10 AC 243 ms
14,560 KB
testcase_11 AC 241 ms
14,600 KB
testcase_12 AC 241 ms
14,592 KB
testcase_13 AC 239 ms
14,604 KB
testcase_14 AC 238 ms
14,472 KB
testcase_15 AC 241 ms
14,596 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 193 ms
14,600 KB
testcase_27 AC 190 ms
14,600 KB
testcase_28 AC 82 ms
11,008 KB
testcase_29 AC 83 ms
11,124 KB
testcase_30 AC 85 ms
11,012 KB
testcase_31 AC 78 ms
11,008 KB
testcase_32 AC 87 ms
11,008 KB
testcase_33 AC 87 ms
11,008 KB
testcase_34 AC 81 ms
10,880 KB
testcase_35 AC 83 ms
11,012 KB
testcase_36 AC 84 ms
11,008 KB
testcase_37 AC 85 ms
11,012 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

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 1'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;
		REP(i, q) y[i] *= -1;
	}
	REP(i, q) printf("%d\n", ans[i]);
}


0