結果

問題 No.877 Range ReLU Query
ユーザー tailstails
提出日時 2019-09-07 23:24:58
言語 cLay
(20240714-1)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 7,290 ms
コンパイル使用メモリ 217,128 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-11-08 10:18:33
合計ジャッジ時間 10,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 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 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 188 ms
29,952 KB
testcase_12 AC 167 ms
28,800 KB
testcase_13 AC 123 ms
20,480 KB
testcase_14 AC 121 ms
20,608 KB
testcase_15 AC 216 ms
30,976 KB
testcase_16 AC 217 ms
30,592 KB
testcase_17 AC 216 ms
30,720 KB
testcase_18 AC 218 ms
30,720 KB
testcase_19 AC 187 ms
31,360 KB
testcase_20 AC 194 ms
31,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

segtree<ll> t,c;
ll n,q,a[2d5],l[2d5],r[2d5],j[2d5],z[1d5];
{
	rd(n,q,((a+q))(n),(a,l,r,a)(q));
	rep(i,q)j[i]=i;
	rep(i,n)j[i+q]=i;
	t.walloc(n,1);
	c.walloc(n,1);
	sortA(n+=q,a,l,r,j);
	for(;n--;){
		if(l[n]){
			z[j[n]]=t.getSum(l[n]-1,r[n])-c.getSum(l[n]-1,r[n])*a[n];
		}else{
			t.add(j[n],j[n]+1,a[n]);
			c.add(j[n],j[n]+1,1);
		}
	}
	wtLn(z(q));
}
0