結果

問題 No.1332 Range Nearest Query
ユーザー Example0911Example0911
提出日時 2021-02-03 20:54:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 389 ms / 2,500 ms
コード長 1,828 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 212,744 KB
実行使用メモリ 30,692 KB
最終ジャッジ日時 2024-06-30 04:34:20
合計ジャッジ時間 20,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 328 ms
27,648 KB
testcase_04 AC 389 ms
27,652 KB
testcase_05 AC 323 ms
27,648 KB
testcase_06 AC 312 ms
30,568 KB
testcase_07 AC 286 ms
30,564 KB
testcase_08 AC 281 ms
30,568 KB
testcase_09 AC 291 ms
30,568 KB
testcase_10 AC 281 ms
30,436 KB
testcase_11 AC 280 ms
30,564 KB
testcase_12 AC 302 ms
30,440 KB
testcase_13 AC 279 ms
30,568 KB
testcase_14 AC 279 ms
30,568 KB
testcase_15 AC 282 ms
30,564 KB
testcase_16 AC 342 ms
30,568 KB
testcase_17 AC 346 ms
30,568 KB
testcase_18 AC 338 ms
30,692 KB
testcase_19 AC 351 ms
30,444 KB
testcase_20 AC 343 ms
30,440 KB
testcase_21 AC 342 ms
30,568 KB
testcase_22 AC 336 ms
30,572 KB
testcase_23 AC 344 ms
30,564 KB
testcase_24 AC 344 ms
30,440 KB
testcase_25 AC 335 ms
30,524 KB
testcase_26 AC 264 ms
30,444 KB
testcase_27 AC 237 ms
30,564 KB
testcase_28 AC 142 ms
7,176 KB
testcase_29 AC 146 ms
7,176 KB
testcase_30 AC 150 ms
7,176 KB
testcase_31 AC 150 ms
7,304 KB
testcase_32 AC 164 ms
7,172 KB
testcase_33 AC 151 ms
7,052 KB
testcase_34 AC 144 ms
7,048 KB
testcase_35 AC 142 ms
7,044 KB
testcase_36 AC 142 ms
7,044 KB
testcase_37 AC 168 ms
7,180 KB
testcase_38 AC 278 ms
18,920 KB
testcase_39 AC 197 ms
7,812 KB
testcase_40 AC 337 ms
29,844 KB
testcase_41 AC 234 ms
11,532 KB
testcase_42 AC 269 ms
18,408 KB
testcase_43 AC 249 ms
14,340 KB
testcase_44 AC 304 ms
24,708 KB
testcase_45 AC 288 ms
22,916 KB
testcase_46 AC 258 ms
17,280 KB
testcase_47 AC 302 ms
20,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = 998244353;

template <typename T>
struct RMQ {
	int n;         // 葉の数
	vector<T> dat; // 完全二分木の配列
	RMQ(int n_) : n(), dat(n_ * 4, INF) { // 葉の数は 2^x の形
		int x = 1;
		while (n_ > x) {
			x *= 2;
		}
		n = x;
	}
	void update(int i, T x) {
		i += n - 1;
		dat[i] = x;
		while (i > 0) {
			i = (i - 1) / 2;  // parent
			dat[i] = min(dat[i * 2 + 1], dat[i * 2 + 2]);
		}
	}
	// the minimum element of [a,b)
	T query(int a, int b) { return query_sub(a, b, 0, 0, n); }
	T query_sub(int a, int b, int k, int l, int r) {
		if (r <= a || b <= l) {
			return INF;
		}
		else if (a <= l && r <= b) {
			return dat[k];
		}
		else {
			T vl = query_sub(a, b, k * 2 + 1, l, (l + r) / 2);
			T vr = query_sub(a, b, k * 2 + 2, (l + r) / 2, r);
			return min(vl, vr);
		}
	}
}; 
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	ll N; cin >> N;
	vector<P>p;
	for (int i = 0; i < N; i++) {
		ll X; cin >> X;
		p.push_back({ X, -i });
	}
	ll Q; cin >> Q;
	vector<ll>l(Q), r(Q);
	for (int i = 0; i < Q; i++) {
		cin >> l[i] >> r[i]; l[i]--;
		ll x; cin >> x;
		p.push_back({ x, i + 1 });
	}
	sort(p.begin(), p.end());
	vector<ll>ans(Q, INF);
	// まず, 集合Lについて試す
	RMQ<ll>rmq(N), rmq2(N);
	for (auto x : p) {
		if (x.second <= 0)rmq.update(-x.second, -x.first);
		else {
			ll idx = x.second - 1;
			ans[idx] = min(ans[idx], x.first + rmq.query(l[idx], r[idx]));
		}
	}
	
	reverse(p.begin(), p.end());
	for (auto x : p) {
		if (x.second <= 0)rmq2.update(-x.second, x.first);
		else {
			ll idx = x.second - 1;
			ans[idx] = min(ans[idx], rmq2.query(l[idx], r[idx]) - x.first);
		}
	}

	for (int i = 0; i < Q; i++) {
		cout << ans[i] << endl;
	}
	return 0;
}
0