結果

問題 No.1234 典型RMQ
ユーザー tailstails
提出日時 2020-09-18 22:35:03
言語 cLay
(20240714-1)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 4,524 ms
コンパイル使用メモリ 179,664 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-11-09 01:59:52
合計ジャッジ時間 6,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 43 ms
8,704 KB
testcase_07 AC 34 ms
5,632 KB
testcase_08 AC 48 ms
9,088 KB
testcase_09 AC 39 ms
7,040 KB
testcase_10 AC 46 ms
8,832 KB
testcase_11 AC 46 ms
8,832 KB
testcase_12 AC 38 ms
7,168 KB
testcase_13 AC 33 ms
5,632 KB
testcase_14 AC 40 ms
7,168 KB
testcase_15 AC 37 ms
7,040 KB
testcase_16 AC 43 ms
8,832 KB
testcase_17 AC 38 ms
6,912 KB
testcase_18 AC 29 ms
5,376 KB
testcase_19 AC 45 ms
9,088 KB
testcase_20 AC 26 ms
8,192 KB
testcase_21 AC 44 ms
8,704 KB
testcase_22 AC 35 ms
8,704 KB
testcase_23 AC 35 ms
8,832 KB
testcase_24 AC 35 ms
8,960 KB
testcase_25 AC 34 ms
8,960 KB
testcase_26 AC 37 ms
8,960 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,a[1d5],q,k,l,r,c;
segtree_Add_Minval<ll>t;
{
	rd(n,a(n),q);
	t.walloc(n,1);
	t[0..n-1]=a[0..];
	t.build();
	rep(q){
		rd(k,l--,r,c);
		if(k==1){
			t.add(l,r,c);
		}else{
			wt(t.getMinVal(l,r));
		}
	}
}
0