結果

問題 No.875 Range Mindex Query
ユーザー tailstails
提出日時 2019-09-06 22:33:30
言語 cLay
(20240714-1)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 3,977 ms
コンパイル使用メモリ 182,632 KB
実行使用メモリ 15,208 KB
最終ジャッジ日時 2024-07-05 13:23:37
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
7,520 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,948 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 80 ms
13,480 KB
testcase_12 AC 63 ms
11,276 KB
testcase_13 AC 53 ms
13,596 KB
testcase_14 AC 50 ms
13,564 KB
testcase_15 AC 72 ms
15,208 KB
testcase_16 AC 46 ms
13,740 KB
testcase_17 AC 50 ms
13,900 KB
testcase_18 AC 50 ms
13,780 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(1+t.getMinInd(l,r+1));
		}
	}
}
0