結果

問題 No.875 Range Mindex Query
ユーザー achapiachapi
提出日時 2024-08-06 23:54:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 4,420 ms
コンパイル使用メモリ 266,112 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-08-06 23:54:23
合計ジャッジ時間 8,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 206 ms
6,144 KB
testcase_12 AC 166 ms
5,376 KB
testcase_13 AC 146 ms
6,528 KB
testcase_14 AC 141 ms
6,528 KB
testcase_15 AC 191 ms
6,400 KB
testcase_16 AC 264 ms
6,528 KB
testcase_17 AC 263 ms
6,528 KB
testcase_18 AC 252 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
pair<int, int> op(pair<int, int> a, pair<int, int> b){
	return min(a, b);
}
pair<int, int> e(){
	return make_pair(1e9, 0);
}
int main(){
	int N, Q;
	cin >> N >> Q;
	vector<int> a(N);
	for (int i = 0; i < N; i++){
		cin >> a[i];
	}
	atcoder::segtree<pair<int, int>, op, e> seg(N);
	for (int i = 0; i < N; i++){
		seg.set(i, make_pair(a[i], i));
	}
	while (Q--){
		int t, l, r;
		cin >> t >> l >> r;
		l--;
		r--;
		if (t == 1){
			int L = seg.get(l).first, R = seg.get(r).first;
			seg.set(l, make_pair(R, l));
			seg.set(r, make_pair(L, r));
		}
		if (t == 2){
			cout << seg.prod(l, r + 1).second + 1 << endl;
		}
	}
}
0