結果

問題 No.875 Range Mindex Query
ユーザー tailstails
提出日時 2019-09-06 22:34:55
言語 cLay
(20240714-1)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 4,228 ms
コンパイル使用メモリ 182,284 KB
実行使用メモリ 15,592 KB
最終ジャッジ日時 2024-07-05 13:23:43
合計ジャッジ時間 5,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
7,488 KB
testcase_11 AC 76 ms
15,276 KB
testcase_12 AC 59 ms
11,020 KB
testcase_13 AC 59 ms
13,464 KB
testcase_14 AC 52 ms
15,216 KB
testcase_15 AC 71 ms
13,620 KB
testcase_16 AC 45 ms
15,592 KB
testcase_17 AC 51 ms
15,488 KB
testcase_18 AC 49 ms
15,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

segtree<ll> t;
ll n,q,a[1d5];
ll b,l,r,vl,vr;
{
	rd(n,q,a(n));
	t.walloc(n,1);
	t[0..n-1]=a[0..];
	t.build();
	rep(q){
		rd(b,l,r);
		--l; --r;
		if(b==1){
			vl=t[l];
			vr=t[r];
			t.change(l,l+1,vr);
			t.change(r,r+1,vl);
		}else{
			wt(1ll+t.getMinInd(l,r+1));
		}
	}
}
0