結果

問題 No.1332 Range Nearest Query
ユーザー TonalidadeHidricaTonalidadeHidrica
提出日時 2021-01-08 22:28:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,073 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 209,964 KB
実行使用メモリ 15,568 KB
最終ジャッジ日時 2024-04-28 03:51:55
合計ジャッジ時間 17,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
8,956 KB
testcase_01 AC 9 ms
8,912 KB
testcase_02 AC 9 ms
9,060 KB
testcase_03 AC 321 ms
14,172 KB
testcase_04 WA -
testcase_05 AC 319 ms
14,236 KB
testcase_06 AC 237 ms
15,568 KB
testcase_07 AC 244 ms
14,660 KB
testcase_08 AC 240 ms
14,804 KB
testcase_09 AC 239 ms
14,580 KB
testcase_10 AC 234 ms
14,564 KB
testcase_11 AC 230 ms
14,640 KB
testcase_12 AC 237 ms
14,696 KB
testcase_13 AC 239 ms
14,772 KB
testcase_14 AC 234 ms
14,712 KB
testcase_15 AC 236 ms
14,788 KB
testcase_16 AC 349 ms
14,376 KB
testcase_17 AC 351 ms
14,588 KB
testcase_18 AC 365 ms
14,484 KB
testcase_19 AC 364 ms
14,608 KB
testcase_20 AC 325 ms
14,832 KB
testcase_21 WA -
testcase_22 AC 363 ms
14,972 KB
testcase_23 AC 353 ms
14,576 KB
testcase_24 AC 359 ms
14,712 KB
testcase_25 WA -
testcase_26 AC 191 ms
14,484 KB
testcase_27 AC 185 ms
14,660 KB
testcase_28 AC 80 ms
11,148 KB
testcase_29 AC 81 ms
11,032 KB
testcase_30 AC 82 ms
11,044 KB
testcase_31 AC 77 ms
10,932 KB
testcase_32 AC 84 ms
11,168 KB
testcase_33 AC 85 ms
11,024 KB
testcase_34 AC 79 ms
11,064 KB
testcase_35 AC 81 ms
11,132 KB
testcase_36 AC 80 ms
11,192 KB
testcase_37 AC 82 ms
11,108 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 348 ms
15,480 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 250 ms
13,672 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;
		REP(i, q) y[i] *= -1;
	}
	REP(i, q) printf("%d\n", ans[i]);
}


0