結果

問題 No.875 Range Mindex Query
ユーザー QCFiumQCFium
提出日時 2019-09-06 23:34:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 467 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 182,432 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-06-24 21:27:06
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,760 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

int main() {
	int n = ri();
	int q = ri();
	int a[n];
	for (int i = 0; i < n; i++) a[i] = ri();
	for (int i = 0; i < q; i++) {
		int t = ri(), l = ri() - 1, r = ri() - 1;
		if (t == 1) std::swap(a[l], a[r]);
		else printf("%d\n", (int)(std::min_element(a + l, a + r + 1) - a) + 1);
	}
	return 0;
}

0