#include // created [2020/02/28] 21:29:02 #pragma GCC diagnostic ignored "-Wsign-compare" #pragma GCC diagnostic ignored "-Wsign-conversion" using i32 = int32_t; using i64 = int64_t; using u32 = uint32_t; using u64 = uint64_t; using uint = unsigned int; using usize = std::size_t; using ll = long long; using ull = unsigned long long; using ld = long double; template using arr = T (&)[n]; template using c_arr = const T (&)[n]; template using max_heap = std::priority_queue; template using min_heap = std::priority_queue, std::greater>; template constexpr T popcount(const T u) { return u ? static_cast(__builtin_popcountll(static_cast(u))) : static_cast(0); } template constexpr T log2p1(const T u) { return u ? static_cast(64 - __builtin_clzll(static_cast(u))) : static_cast(0); } template constexpr T msbp1(const T u) { return log2p1(u); } template constexpr T lsbp1(const T u) { return __builtin_ffsll(u); } template constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast(u); } template constexpr bool ispow2(const T u) { return u and (static_cast(u) & static_cast(u - 1)) == 0; } template constexpr T ceil2(const T u) { return static_cast(1) << clog(u); } template constexpr T floor2(const T u) { return u == 0 ? static_cast(0) : static_cast(1) << (log2p1(u) - 1); } template constexpr bool btest(const T mask, const usize ind) { return static_cast((static_cast(mask) >> ind) & static_cast(1)); } template void bset(T& mask, const usize ind) { mask |= (static_cast(1) << ind); } template void breset(T& mask, const usize ind) { mask &= ~(static_cast(1) << ind); } template void bflip(T& mask, const usize ind) { mask ^= (static_cast(1) << ind); } template void bset(T& mask, const usize ind, const bool b) { (b ? bset(mask, ind) : breset(mask, ind)); } template constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast(0) : static_cast((static_cast(mask) << (64 - ind)) >> (64 - ind)); } template bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); } template bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); } constexpr unsigned int mod = 1000000007; template constexpr T inf_v = std::numeric_limits::max() / 4; template constexpr Real pi_v = Real{3.141592653589793238462643383279502884}; auto mfp = [](auto&& f) { return [=](auto&&... args) { return f(f, std::forward(args)...); }; }; template T in() { T v; return std::cin >> v, v; } template T in_v(typename std::enable_if<(i == n), c_arr>::type) { return in(); } template auto in_v(typename std::enable_if<(i < n), c_arr>::type& szs) { const usize s = (usize)szs[i]; std::vector(szs))> ans(s); for (usize j = 0; j < s; j++) { ans[j] = in_v(szs); } return ans; } template auto in_v(c_arr szs) { return in_v(szs); } template auto in_t() { return std::tuple...>{in()...}; } struct io_init { io_init() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(20); } void clear() { std::cin.tie(), std::ios::sync_with_stdio(true); } } io_setting; int out() { return 0; } template int out(const T& v) { return std::cout << v, 0; } template int out(const std::vector& v) { for (usize i = 0; i < v.size(); i++) { if (i > 0) { std::cout << ' '; } out(v[i]); } return 0; } template int out(const std::pair& v) { return out(v.first), std::cout << ' ', out(v.second), 0; } template int out(const T& v, const Args... args) { return out(v), std::cout << ' ', out(args...), 0; } template int outln(const Args... args) { return out(args...), std::cout << '\n', 0; } template int outel(const Args... args) { return out(args...), std::cout << std::endl, 0; } # define SHOW(...) static_cast(0) constexpr ull TEN(const usize n) { return n == 0 ? 1ULL : TEN(n - 1) * 10ULL; } template auto make_v(typename std::enable_if<(i == n), c_arr>::type, const T& v = T{}) { return v; } template auto make_v(typename std::enable_if<(i < n), c_arr>::type szs, const T& v = T{}) { const usize s = (usize)szs[i]; return std::vector(szs, v))>(s, make_v(szs, v)); } template auto make_v(c_arr szs, const T& t = T{}) { return make_v(szs, t); } template class dualseg { public: using operator_monoid_type = OpMonoid; using operator_type = typename operator_monoid_type::operator_type; dualseg(const usize sz, const operator_type& initial = operator_monoid_type::id()) : sz{sz}, depth{clog(sz)}, half{static_cast(1) << depth}, op(half << 1, operator_monoid_type::id()) { if (initial != operator_monoid_type::id()) { std::fill(op.begin() + half, op.end(), initial); } } template dualseg(const InIt first, const InIt last) : sz{static_cast(std::distance(first, last))}, depth{clog(sz)}, half{static_cast(1) << depth}, op(half << 1, operator_monoid_type::id()) { std::copy(first, last, op.begin() + half); } operator_type get(const usize a) const { assert(a < sz); operator_type ans = operator_monoid_type::id(); for (usize i = 0; i <= depth; i++) { ans = operator_monoid_type::compose(ans, op[(a + half) >> (depth - i)]); } return ans; } void set(usize a, const operator_type& f) { assert(a < sz); clean(a += half), clean(a + 1), op[a] = f; } void act(usize L, usize R, const operator_type& f) { assert(L < R), assert(R <= sz); clean(L += half), clean(R += half); for (; L < R; L >>= 1, R >>= 1) { if (L & 1) { update(L++, f); } if (R & 1) { update(--R, f); } } } usize size() const { return sz; } friend std::ostream& operator<<(std::ostream& os, const dualseg& seg) { os << "["; for (usize i = 0; i < seg.sz; i++) { os << seg.get(i) << (i + 1 == seg.sz ? "" : ","); } return (os << "]\n"); } private: void down(const usize a) { update(a << 1, op[a]), update(a << 1 | 1, op[a]), op[a] = operator_monoid_type::id(); } void clean(const usize a) { const usize b = (a / (a & -a)) >> 1; for (usize i = 0; i < depth; i++) { const usize v = a >> (depth - i); if (v > b) { break; } down(v); } } void update(const usize a, const operator_type& f) { op[a] = operator_monoid_type::compose(f, op[a]); } const usize sz, depth, half; std::vector op; }; template struct plus { using element_type = Element; using operator_type = element_type; plus() = delete; static operator_type compose(const operator_type& a, const operator_type& b) { return a + b; } static constexpr operator_type id() { return operator_type{}; } }; int main() { const auto N = in(), Q = in(); auto as = in_v({N}); std::vector is_as(Q); std::vector xs(Q); std::vector ys(Q); for (int i = 0; i < Q; i++) { const auto c = in(); const auto x = in() - 1; const auto y = in(); is_as[i] = c == 'A', xs[i] = x, ys[i] = y; } std::vector ps(N + 1, 0); for (int q = 0; q < Q; q++) { if (is_as[q]) { continue; } const int x = xs[q], y = ys[q]; ps[x]++, ps[y]--; } for (int i = 1; i <= N; i++) { ps[i] += ps[i - 1]; } SHOW(ps); std::vector ans(N, 0LL); for (int i = 0; i < N; i++) { ans[i] = (ll)ps[i] * as[i]; } dualseg> seg(N); for (int q = 0; q < Q; q++) { const bool is_a = is_as[q]; const int x = xs[q], y = ys[q]; if (is_a) { ans[x] += (ll)y * (ps[x] - seg.get(x)); } else { seg.act(x, y, 1); } } outln(ans); return 0; }