N,M=map(int,input().split()) p=list(map(int,input().split())) S=input() for C in S: if C=='L': p[1]+=p[0] p=p[1:]+[0] else: p[-2]+=p[-1] p=[0]+p[0:N-1] print(*p)