#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; typedef pair P; typedef pair Pid; typedef pair Pdi; typedef pair Pl; typedef pair> PP; const double PI = 3.1415926535897932; // acos(-1) const double EPS = 1e-15; const int INF = 1001001001; const int mod = 1e+9 + 7; #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) #define chadd(x, y) x = (x + y) % mod template struct LazySegmentTree{ using F = function; using G = function; using H = function; using C = function; int sz; vector data; vector lazy; const F f; const G g; const H h; const Monoid M1; // モノイドの単位元 const OperatorMonoid OM0; // 作用素モノイドの単位元 const C c; LazySegmentTree(int n, const F f, const G g, const H h, const Monoid &M1, const OperatorMonoid OM0, const C c = [](int a, int b){return a;}) : f(f), g(g), h(h), M1(M1), OM0(OM0), c(c) { sz = 1; while(sz < n) sz <<= 1; data.assign(sz << 1, M1); lazy.assign(sz << 1, OM0); } void set(int k, const Monoid &x){ data[k + sz] = x; } void build(){ for(int k = sz - 1; k > 0; --k){ data[k] = f(data[k << 1], data[k << 1 | 1]); } } void propagate(int k, int len){ if(lazy[k] != OM0){ if(k < sz){ lazy[k << 1] = h(lazy[k << 1], lazy[k]); lazy[k << 1 | 1] = h(lazy[k << 1 | 1], lazy[k]); } data[k] = g(data[k], c(lazy[k], len)); lazy[k] = OM0; } } // a,b : 実際の配列上の index // k : セグ木上の index // l,r : data[k] が実際の配列でのどの区間の両端か (半開区間 [l,r) ) Monoid update(int a, int b, const OperatorMonoid &x, int k=1, int l=0, int r=-1){ if(r == -1) r = sz; propagate(k, r - l); if(r <= a || b <= l) return data[k]; else if(a <= l && r <= b){ lazy[k] = h(lazy[k], x); propagate(k, r - l); return data[k]; } else{ return data[k] = f(update(a, b, x, k << 1, l, (l + r) >> 1), update(a, b, x, k << 1 | 1, (l + r) >> 1, r)); } } Monoid query(int a, int b, int k=1, int l=0, int r=-1){ if(r == -1) r = sz; propagate(k, r - l); if(r <= a || b <= l) return M1; else if(a <= l && r <= b) return data[k]; else{ return f(query(a, b, k << 1, l, (l + r) >> 1), query(a, b, k << 1 | 1, (l + r) >> 1, r)); } } Monoid operator[](const int &k){ return query(k, k + 1); } void print(){ for(int i = 0; i < data.size(); ++i){ cerr << data[i] << " "; } cerr << "\n"; } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n, q; cin >> n >> q; vector a(n); for(int i = 0; i < n; ++i) cin >> a[i]; LazySegmentTree cnt(n, [](int a, int b){return a + b;}, [](int a, int b){return a + b;}, [](int a, int b){return a + b;}, 0, 0, [](int a, int b){return a * b;}); vector res(n, 0); for(int i = 0; i < q; ++i){ char c; int x, y; cin >> c >> x >> y; --x; if(c == 'A'){ res[x] += a[x] * cnt.query(x, x + 1); cnt.update(x, x + 1, -cnt[x]); a[x] += y; } else{ cnt.update(x, y, 1); } } for(int i = 0; i < n; ++i){ res[i] += a[i] * cnt[i]; } for(int i = 0; i < n; ++i){ cout << res[i] << ((i == n - 1) ? "\n" : " "); } }