#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n, m;
    cin >> n >> m;
    deque<int> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }

    string s;
    cin >> s;
    for (char c : s) {
        if (c == 'L') {
            int x = a.front();
            a.pop_front();
            a.front() += x;
            a.push_back(0);
        } else {
            int x = a.back();
            a.pop_back();
            a.back() += x;
            a.push_front(0);
        }
    }

    for (int i = 0; i < n; ++i) {
        cout << a[i] << " \n"[i + 1 == n];
    }
    return 0;
}