#include #include #include #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 vector vi; typedef pair pii; #define MP make_pair #define PB push_back #define inf 1000000007 #define rep(i,n) for(int i = 0; i < (int)(n); ++i) #define all(x) (x).begin(),(x).end() template void Fill(A (&array)[N], const T &val){ std::fill( (T*)array, (T*)(array+N), val ); } template inline bool chmax(T &a, T b){ if(a inline bool chmin(T &a, T b){ if(a>b){ a = b; return true; } return false; } template class segtree { private: int n,sz,h; vector node, lazy; void eval(int k) { if(lazy[k]){ node[k] += lazy[k]; if(k < n) { lazy[k*2] += lazy[k] / 2, lazy[k*2+1] += lazy[k] / 2; } lazy[k] = 0; } } public: segtree(const vector& v) : n(1), sz((int)v.size()), h(0) { while(n < sz) n *= 2, h++; node.resize(2*n, 0), lazy.resize(2*n, 0); for(int i = 0; i < sz; i++) node[i+n] = v[i]; for(int i = n-1; i >= 1; i--) node[i] = node[2*i] + node[2*i+1]; } void range(int a, int b, T x, int k=1, int l=0, int r=-1){ if(r < 0) r = n; eval(k); if(b <= l || r <= a){ return; } if(a <= l && r <= b){ lazy[k] += (r-l)*x; eval(k); }else{ range(a, b, x, 2*k, l, (l+r)/2); range(a, b, x, 2*k+1, (l+r)/2, r); node[k] = node[2*k] + node[2*k+1]; } } T query(int a, int b) { a += n, b += n - 1; for(int i = h; i > 0; i--) eval(a >> i), eval(b >> i); b++; T res1 = 0, res2 = 0; while(a < b) { if(a & 1) eval(a), res1 += node[a++]; if(b & 1) eval(--b), res2 += node[b]; a >>= 1, b >>= 1; } return res1 + res2; } void print(){for(int i = 0; i < sz; i++) cout<> n >> q; vectora(n); segtree sg(a); vectorres(n); vectorp(n); rep(i,n){ cin >> p[i]; } vector > > Q; rep(i,q){ char c; ll a,b; cin >> c >> a >> b; if(c=='A'){ a--; Q.push_back(MP(0,MP(a,b))); }else{ a--;b--; Q.push_back(MP(1,MP(a,b))); sg.range(a,b+1,1); } } rep(i,n){ res[i] += sg.query(i,i+1)*p[i]; } rep(i,q){ if(Q[i].first==0){ res[Q[i].second.first] += sg.query(Q[i].second.first,Q[i].second.first+1)*Q[i].second.second; }else{ sg.range(Q[i].second.first,Q[i].second.second+1,-1); } } rep(i,n){ cout << res[i] << " "; } cout << endl; return 0; }