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
#include <iostream>

using namespace std;
char tab[502][502];
int pion[502];
int poziom[502];
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n,m;
    cin>>n>>m;
    for(int i=0;i<n;i++){
        for(int j=0;j<m;j++){
            cin>>tab[i][j];
            if(tab[i][j]!='.'){
            poziom[i]+=1;
            pion[j]+=1;}
        }
    }
    int k;
    cin>>k;
    string c="";
    int s=0;
    for(int z=0;z<k;z++){
        char c2;
        cin>>c2;
        if(s>0){
        if(c2=='G'&&c[s-1]=='D'){c[s-1]='G';continue;}
        if(c2=='D'&&c[s-1]=='G'){c[s-1]='D';continue;}
        if(c2=='P'&&c[s-1]=='L'){c[s-1]='P';continue;}
        if(c2=='L'&&c[s-1]=='P'){c[s-1]='L';continue;}
        if(c2!=c[s-1]){c+=c2;s++;}
        }else{
        s++;
        c+=c2;
        }
    }
    for(int z=0;z<s;z++){
        if(c[z]=='G'){
            for(int i=0;i<m;i++){
                int y=0;
                if(pion[i]==n){continue;}
                for(int j=0;j<n;j++){
                    if(tab[j][i]!='.'){
                        if(y!=j){
                            tab[y][i]=tab[j][i];
                            poziom[j]-=1;
                            poziom[y]+=1;
                            tab[j][i]='.';
                        }
                        y++;
                    }
                }
            }
       }
       if(c[z]=='D'){
            for(int i=0;i<m;i++){
                int y=n-1;
                if(pion[i]==n){continue;}
                for(int j=n-1;j>=0;j--){
                    if(tab[j][i]!='.'){
                        if(y!=j){
                            tab[y][i]=tab[j][i];
                            poziom[y]+=1;
                            poziom[j]-=1;
                            tab[j][i]='.';
                        }
                        y--;
                    }
                }
            }
       }
       if(c[z]=='L'){
            for(int i=0;i<n;i++){
                int y=0;
                if(poziom[i]==m){continue;}
                for(int j=0;j<m;j++){
                    if(tab[i][j]!='.'){
                        if(y!=j){
                            tab[i][y]=tab[i][j];
                            pion[y]+=1;
                            pion[j]-=1;
                            tab[i][j]='.';
                        }
                        y++;
                    }
                }
            }
       }
       if(c[z]=='P'){
            for(int i=0;i<n;i++){
                int y=m-1;
                if(poziom[i]==m){continue;}
                for(int j=m-1;j>=0;j--){
                    if(tab[i][j]!='.'){
                        if(y!=j){
                            tab[i][y]=tab[i][j];
                            pion[y]+=1;
                            pion[j]-=1;
                            tab[i][j]='.';
                        }
                        y--;
                    }
                }
            }
       }

    }
    for(int i=0;i<n;i++){
        for(int j=0;j<m;j++){
            cout<<tab[i][j];
        }
        cout<<"\n";
    }
    return 0;
}