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
#include<bits/stdc++.h>
using namespace std;

int n, m, k;
char T[505][505], Tab[505][505];

vector<char> vec;

int charToint(char c){
    if(c == 'L')
        return -1;
    if(c == 'P')
        return 1;
    if(c == 'G')
        return -2;
    return 2;
}


void przesun(int sX, int sY, int kX, int kY, int skokX, int skokY){
    for(int x = sX, y = sY ; ; x += skokX, y += skokY){
        if(T[x][y] != '.'){
            swap(T[x][y] , T[sX][sY]);
            sX += skokX;
            sY += skokY;
        }
        if((x == kX && skokX != 0) || (y == kY)&&skokY !=0)
            break;
    }
}

void idz(char c){
    if(c == 'G'){
        for(int i = 1 ; i <= m ; i++){
            przesun(1, i, n, i, 1, 0);
        }
    }
    if(c == 'D'){
        for(int i = 1 ; i <= m ; i++){
            przesun(n, i, 1, i, -1, 0);
        }
    }
    if(c == 'L'){
        for(int i = 1 ; i <= n ; i++){
            przesun(i, 1, i, m, 0, 1);
        }
    }
    if(c == 'P'){
        for(int i = 1 ; i <= n ; i++){
            przesun(i, m, i, 1, 0, -1);
        }
    }
}



int main(){
    cin >> n >> m;
    for(int i = 1 ; i <= n ; i++){
        for(int j = 1 ; j <= m ; j++){
            cin >> T[i][j];
        }
    }

    cin >> k;
    for(int i = 1 ; i <= k ; i++){
        char c;
        cin >> c;
        // idz(c);
        int roz = vec.size();
        if(roz > 0){
            char last = vec[roz - 1];
            if(c != last){
                if(charToint(c) == -charToint(last)){
                    vec.pop_back();
                    vec.push_back(c);
                }
                else{
                    if(roz == 1){
                        vec.push_back(c);
                    }
                    else{
                        char first = vec[roz - 2];
                        if(first != c){
                            vec.push_back(c);
                        }
                    }
                }
            }
        }else{
            vec.push_back(c);
        }
    }
    // cout << vec.size()<<"\n";
    for(int it = 0 ; it < vec.size() ; it++){
        char x = vec[it];
        // cout << x << " ";
        // cout <<"\n";
        if(it > 3){
            idz(x);
            bool same = true;
            for(int i = 1 ; i <= n ; i++)
                for(int j = 1 ; j <= m ; j++)
                    if(Tab[i][j] != T[i][j])
                        same = false;
            if(same){
                // cout<<"MAMY TAKIE SAME: "<< it<<"\n";
                int roz = it - 3;
                while(it + roz <= vec.size()){
                    it += roz;
                }
                // cout<<"KONIEC: " << it;
            }
        }else{
            idz(x);
        }
        // for(int i = 1 ; i <= n ; i++){
        //     for(int j = 1 ; j <= m ; j++){
        //         cout << T[i][j];
        //     }
        //     cout<<"\n";
        // }
        // cout<<"\n";
        if(it == 3){
            //zapisz tablice
            for(int i = 1 ; i <= n ; i++)
                for(int j = 1 ; j <= m ; j++)
                    Tab[i][j] = T[i][j];
        }
    }
    for(int i = 1 ; i <= n ; i++){
        for(int j = 1 ; j <= m ; j++){
            cout << T[i][j];
        }
        cout<<"\n";
    }
}