class BinaryIndexTree attr_reader :bit, :size def initialize(size, init: 0) @bit = Array.new(size + 1, init) @size = size end def sum(i) s = 0 while i > 0 s += bit[i] i -= i & -i end s end def add(i, x) while i <= size bit[i] += x i += i & -i end end end N, Q = gets.split.map(&:to_i) A = gets.split.map(&:to_i) B = Array.new(N + 1, 0) C = Array.new(N + 2, 0) bit = BinaryIndexTree.new(N + 2) Q.times do c, x, y = gets.chomp.split x = x.to_i y = y.to_i if c == 'A' cnt = bit.sum(x) # p [x, cnt] if cnt > 0 # p 'middle update' B[x] += cnt * A[x - 1] # p B bit.add(x, -cnt) bit.add(x + 1, cnt) C[x] -= cnt C[x + 1] += cnt end A[x - 1] += y else bit.add(x, 1) bit.add(y + 1, -1) C[x] += 1 C[y + 1] -= 1 end # p [:C, C] end c = 0 1.upto(N) do |i| c += C[i] B[i] += A[i - 1] * c end # p A puts B[1..-1].join(' ')