結果

問題 No.1000 Point Add and Array Add
ユーザー tailstails
提出日時 2020-10-01 17:21:46
言語 cLay
(20240714-1)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 2,490 ms
コンパイル使用メモリ 175,684 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-05 14:20:35
合計ジャッジ時間 6,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 28 ms
9,088 KB
testcase_17 AC 21 ms
8,320 KB
testcase_18 AC 37 ms
10,240 KB
testcase_19 AC 37 ms
10,496 KB
testcase_20 AC 24 ms
9,600 KB
testcase_21 AC 38 ms
10,240 KB
testcase_22 AC 35 ms
10,112 KB
testcase_23 AC 39 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll b[2d5];
int n,q,a[2d5],x[2d5],y[2d5];
char c[2d5];
fenwick<int>f;
{
	rd(n,q,a(n),(c,x,y)(q));
	f.walloc(n+1,1);
	rrep(i,q){
		if(c[i]=='A')
			b[x[i]-1]+=(ll)y[i]*f.get(x[i]-1);
		else
			f.add(x[i]-1,1),
			f.add(y[i],-1);
	}
	rep(i,n)b[i]+=(ll)a[i]*f.get(i);
	wt(b(n));
}
0