結果

問題 No.1000 Point Add and Array Add
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-04-02 18:21:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 210,336 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-09-30 23:16:18
合計ジャッジ時間 7,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 2 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 5 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 227 ms
18,944 KB
testcase_17 AC 195 ms
11,356 KB
testcase_18 AC 320 ms
19,672 KB
testcase_19 AC 319 ms
19,712 KB
testcase_20 AC 283 ms
19,712 KB
testcase_21 AC 321 ms
19,712 KB
testcase_22 AC 307 ms
19,840 KB
testcase_23 AC 320 ms
19,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/lazysegtree>
using namespace std;
using namespace atcoder;
using ll = long long;
struct S{
	ll sum;
	ll size;
};
S op(S a, S b) {
	return {a.sum+b.sum, a.size+b.size};
}
S e() {return {0, 0};}
S mapping(ll f, S x) {return {x.sum + f, x.size};}
ll composition(ll f, ll g) {return f + g;}
ll id() {return 0;}
int main() {
	int N, Q;cin >> N >> Q;
	vector<ll> A(N + 1, 0);
	for (int i = 1;i <= N;i++) cin >> A[i];
	vector<S> B(N + 1, {0, 1});
	lazy_segtree<S, op, e, ll, mapping, composition, id> seg(B);
       vector<ll> ans(N + 1, 0);	
	while (Q--) {
		char c;cin >> c;
		if (c == 'A') {
			int x;ll y;cin >> x >> y;
			ans[x] += A[x] * seg.get(x).sum;
			seg.set(x, {0, 1});
			A[x] += y;
		} else {
			int x, y;cin >> x >> y;
			seg.apply(x, y + 1, 1);
		}
	}
	for (int i = 1;i <= N;i++) {
		ans[i] += seg.get(i).sum * A[i];
		cout << ans[i]<< " ";
	}
	cout << endl;
}
0