結果

問題 No.1234 典型RMQ
ユーザー tailstails
提出日時 2020-10-06 10:36:03
言語 cLay
(20240714-1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 718 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 179,296 KB
実行使用メモリ 18,116 KB
最終ジャッジ日時 2024-07-05 14:27:01
合計ジャッジ時間 17,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
7,492 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 790 ms
8,960 KB
testcase_07 AC 188 ms
8,320 KB
testcase_08 AC 983 ms
8,960 KB
testcase_09 AC 575 ms
8,704 KB
testcase_10 AC 900 ms
9,088 KB
testcase_11 AC 754 ms
8,960 KB
testcase_12 AC 514 ms
8,576 KB
testcase_13 AC 209 ms
8,448 KB
testcase_14 AC 539 ms
8,576 KB
testcase_15 AC 420 ms
8,704 KB
testcase_16 AC 891 ms
8,960 KB
testcase_17 AC 542 ms
8,832 KB
testcase_18 AC 90 ms
8,448 KB
testcase_19 AC 974 ms
9,088 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 座標圧縮してあとは愚直

int cc(int n, int arr[], ll values[], void *mem = wmem){
	int i;
	int k = 0;
	int j;
	pair<int,int>*r;
	walloc1d(&r, n, &mem);
	for(i=(0);i<(n);i++){
		r[i].first = arr[i];
		r[i].second = i;
	}
	sort(r, r+n);
	j=r[0].first;
	for(i=(0);i<(n);i++){
		if(i && r[i].first != j){
			values[k]=values[j];
			while(++j<r[i].first){
				values[k]<?=values[j];
			}
			k++;
		}
		arr[r[i].second] = k;
	}
	return k+1;
}

int n,q,k[1d5],lr[2d5],c[1d5];
ll a[1d5];

{
	rd(n,a(n),q);
	rep(i,q){
		rd(k[i],lr[2i]--,lr[2i+1],c[i]);
	}
	cc(2q,lr,a);
	rep(i,q){
		if(k[i]==1){
			REP(j,lr[2i],lr[2i+1]) a[j]+=c[i];
		}else{
			ll z=ll_inf;
			REP(j,lr[2i],lr[2i+1]) z<?=a[j];
			wt(z);
		}
	}
}
0