#pragma gcc optimize("Ofast") #include using namespace std; int main() { ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); int n, m; cin >> n >> m; deque a; for (int i = 0; i < n; ++i) { int tmp; cin >> tmp; a.emplace_back(tmp); } while (m--) { char c; cin >> c; if (c == 'L') { if (a.size() > 1) { int tmp = a[0]; a.pop_front(); tmp += a[0], a.pop_front(); a.emplace_front(tmp), a.emplace_back(0); } } else { if (a.size() > 1) { int tmp = a.back(); a.pop_back(); tmp += a.back(), a.pop_back(); a.emplace_back(tmp), a.emplace_front(0); } } } for (auto p : a) cout << p << ' '; cout << '\n'; }