1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#include <bits/stdc++.h>
#define int long long 
#define cln cout<<"\n--------------------\n"
using namespace std;

constexpr int N = 507;
constexpr int MOD = 1e9+7;

int n, m;
char C[N][N];

void right () {
    for (int i=0; i<n; ++i) { 
        string res = "";
        for (int j=0; j<m; ++j) {
            if (C[i][j] != '.') res += C[i][j];
        }
        for (int j=0; j<m-res.size(); ++j) 
            C[i][j] = '.';
        for (int j=0; j<res.size(); ++j)
            C[i][j+m-res.size()] = res[j]; 
    }
}


void left () {
    for (int i=0; i<n; ++i) { 
        string res = "";
        for (int j=0; j<m; ++j) {
            if (C[i][j] != '.') res += C[i][j];
        }
        for (int j=0; j<res.size(); ++j)
            C[i][j] = res[j]; 
        for (int j=res.size(); j<m; ++j) 
            C[i][j] = '.';
    }
}


void up () {
    for (int i=0; i<m; ++i) {
        string res = "";
        for(int j=0; j<n; ++j) {
            if (C[j][i] != '.') res += C[j][i];
        }
        for (int j=0; j<res.size(); ++j)
            C[j][i] = res[j];
        for (int j=res.size(); j<n; ++j)
            C[j][i] = '.';
    }
}


void down () {
    for (int i=0; i<m; ++i) {
        string res = "";
        for(int j=0; j<n; ++j) {
            if (C[j][i] != '.') res += C[j][i];
        }
        for (int j=0; j<n-res.size(); ++j)
            C[j][i] = '.';
        for (int j=0; j<res.size(); ++j)
            C[j+n-res.size()][i] = res[j];
    }
}


int32_t main() {
    ios_base::sync_with_stdio(0); cin.tie(0);
    int k;
    string x, z;
    cin>>n>>m;
    for (int i=0; i<n; ++i) {
        for (int j=0; j<m; ++j) {
            cin>>C[i][j];
        }
    }
    cin>>k;
    cin>>z;
    char q;

    stack <char> s;
    for (int i=0; i<k; ++i) {
        if (s.empty()) s.push(z[i]);
        else {
            if (z[i] == 'G') {
                q = s.top();
                if (q == 'G') {
                    continue;
                }
                else if (q == 'D')
                    s.pop();

                s.push(z[i]);
            }
            else if (z[i] == 'L') {
                q = s.top();
                if (q == 'L') {
                    continue;
                }
                else if (q == 'P')
                    s.pop();
                
                s.push(z[i]);
                
            }
            else if (z[i] == 'P') {
                q = s.top();
                if (q == 'P') {
                    continue;
                }
                else if (q == 'L')
                    s.pop();
            
                s.push(z[i]);
            }
            else {
                q = s.top();
                if (q == 'D') {
                    continue;
                }
                else if (q == 'G')
                    s.pop();
                
                s.push(z[i]);
            }
        }
    }
    while (!s.empty()) {
        x = s.top() + x;
        s.pop();
    }

    for (int i=0; i<x.size(); ++i) {
        if (x[i] == 'G') {
           up(); 
        }
        else if (x[i] == 'L') {
            left();
        }
        else if (x[i] == 'P') {
            right();
        }
        else {
            down();
        }
    }
    for (int i=0; i<n; ++i) {
        for (int j=0; j<m; ++j)
            cout<<C[i][j];
        cout<<'\n';
    }   
    
    return 0;
}