結果

問題 No.875 Range Mindex Query
ユーザー definedefine
提出日時 2019-09-06 22:14:12
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 3,031 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 176,640 KB
実行使用メモリ 7,344 KB
最終ジャッジ日時 2023-09-07 00:39:20
合計ジャッジ時間 5,603 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 3 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 272 ms
6,928 KB
testcase_12 AC 219 ms
5,040 KB
testcase_13 AC 194 ms
7,304 KB
testcase_14 AC 193 ms
7,344 KB
testcase_15 AC 257 ms
6,900 KB
testcase_16 AC 292 ms
7,344 KB
testcase_17 AC 306 ms
6,976 KB
testcase_18 AC 298 ms
7,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define int long long
#define mod (int)(1e9+7)
#define inf (int)(3e18)
#define rep(i,n) for(int i=0;i<n;i++)
#define REP(i,n) for(int i=1;i<n;i++)
#define P pair<int,int>
#define PiP pair<int,pair<int,int>>
#define PP pair<P,P>
#define all(v) v.begin(),v.end()
#define mkp make_pair
#define mkt make_tuple
#define prique(T) priority_queue<T,vector<T>,greater<T>>
#define vecunique(vec) sort(vec.begin(), vec.end());decltype(vec)::iterator result = std::unique(vec.begin(), vec.end());vec.erase(result, vec.end())
using namespace std;
template<class T> inline void chmax(T& a, T b) { a = max(a, b); }
template<class T> inline void chmin(T& a, T b) { a = min(a, b); }

bool prime(int x) {
	for (int i = 2; i * i <= x; i++) {
		if (x % i == 0)return false;
	}
	return x != 1;
}
int gcd(int x, int y) {
	if (y == 0)return x;
	return gcd(y, x % y);
}
int lcm(int x, int y) {
	return x / gcd(x, y) * y;
}
int kai(int x, int y) {
	int res = 1;
	for (int i = x - y + 1; i <= x; i++) {
		res *= i; res %= mod;
	}
	return res;
}
int mod_pow(int x, int y, int m) {
	int res = 1;
	while (y > 0) {
		if (y & 1) {
			res = res * x % m;
		}
		x = x * x % m;
		y >>= 1;
	}
	return res;
}
int comb(int x, int y) {
	if (y > x)return 0;
	return kai(x, y) * mod_pow(kai(y, y), mod - 2, mod) % mod;
}
int get_rand(int MIN, int MAX) {
	random_device rnd;
	mt19937_64 mt64(rnd());
	uniform_int_distribution<int>engine(MIN, MAX);
	return engine(mt64);
}
/*--------Library Zone!--------*/


struct Segtree {
	int size = 1;
	vector<int>dat, index;
	Segtree(int x) {
		while (size < x)size *= 2;
		index.resize(2 * size - 1);
		dat.resize(2 * size - 1);
		rep(i, 2 * size - 1) {
			dat[i] = inf; index[i] = i;
		}
	}
	void update(int a, int b, int k = 0, int l = 0, int r = -1) {
		if (r == -1)r = size;
		if (r - l == 1) {
			dat[k] = b; index[k] = l;
			return;
		}
		if (a < (l + r) / 2) {
			update(a, b, k * 2 + 1, l, (l + r) / 2);
		}
		else {
			update(a, b, k * 2 + 2, (l + r) / 2, r);
		}
		if (dat[k * 2 + 1] < dat[k * 2 + 2]) {
			dat[k] = dat[k * 2 + 1];
			index[k] = index[k * 2 + 1];
		}
		else {
			dat[k] = dat[k * 2 + 2];
			index[k] = index[k * 2 + 2];
		}
	}
	P query(int a, int b, int k = 0, int l = 0, int r = -1) {
		if (r == -1)r = size;
		if (r <= a || b <= l)return { inf,-1 };
		if (a <= l && r <= b) {
			return { dat[k],index[k] };
		}
		P lval = query(a, b, k * 2 + 1, l, (l + r) / 2);
		P rval = query(a, b, k * 2 + 2, (l + r) / 2, r);
		if (lval.first < rval.first) {
			return { lval.first,lval.second };
		}
		else {
			return { rval.first,rval.second };
		}
	}
};
int n, q;
signed main() {
	cin >> n >> q;
	Segtree segtree(n);
	rep(i, n) {
		int a; cin >> a;
		segtree.update(i, a);
	}
	rep(i, q) {
		int a, b, c; cin >> a >> b >> c;
		b--; c--;
		if (a == 1) {
			int lval = segtree.query(b, b + 1).first;
			int rval = segtree.query(c, c + 1).first;
			segtree.update(b, rval);
			segtree.update(c, lval);
		}
		else {
			int d = segtree.query(b, c + 1).second;
			cout << d + 1 << endl;
		}
	}
}
0