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
156
157
158
159
160
161
#include <cstdio>
#include <algorithm>
using namespace std;

struct Kafelek{
    char kolor;
    int x;
    int y;
}kafel[250005];

bool lewo( const Kafelek &a, const Kafelek &b )
{
   return a.x < b.x;
};

bool prawo( const Kafelek &a, const Kafelek &b )
{
   return a.x > b.x;
};

bool gora( const Kafelek &a, const Kafelek &b )
{
   return a.y < b.y;
};

bool dol( const Kafelek &a, const Kafelek &b )
{
   return a.y > b.y;
};

int y,x,ile=0;
char pole[505][505];

void wGore(){
	sort(kafel,kafel+ile,gora);
	for(int i=0; i<ile; i++){
		for(int j=0; j<kafel[i].y; j++){
			if(pole[ kafel[i].x ][ j ]=='.'){
				pole[ kafel[i].x ][ kafel[i].y ]='.';
				kafel[i].y = j;
				pole[ kafel[i].x ][ kafel[i].y ]= kafel[i].kolor;
				break;
			}
		}
	}
	return;
}

void wDol(){
	sort(kafel,kafel+ile,dol);
	for(int i=0; i<ile; i++){
		for(int j=y; j>kafel[i].y; j--){
			if(pole[ kafel[i].x ][ j ]=='.'){
				pole[ kafel[i].x ][ kafel[i].y ]='.';
				kafel[i].y = j;
				pole[ kafel[i].x ][ kafel[i].y ]= kafel[i].kolor;
				break;
			}
		}
	}
	return;
}

void wLewo(){
	sort(kafel,kafel+ile,lewo);
	for(int i=0; i<ile; i++){
		for(int j=0; j<kafel[i].x; j++){
			if(pole[ j ][ kafel[i].y ]=='.'){
				pole[ kafel[i].x ][ kafel[i].y ]='.';
				kafel[i].x = j;
				pole[ kafel[i].x ][ kafel[i].y ]= kafel[i].kolor;
				break;
			}
		}
	}
	return;
}

void wPrawo(){
	sort(kafel,kafel+ile,prawo);
	for(int i=0; i<ile; i++){
		for(int j=x; j>kafel[i].x; j--){
			if(pole[ j ][ kafel[i].y ]=='.'){
				pole[ kafel[i].x ][ kafel[i].y ]='.';
				kafel[i].x = j;
				pole[ kafel[i].x ][ kafel[i].y ]= kafel[i].kolor;
				break;
			}
		}
	}
	return;
}

void wyczyscPole(){
    for(int i=0; i<y; i++)
        for(int j=0; j<x; j++)
			pole[j][i] = '.';
	return;
}

void ustawKafle(){
	for(int i=0; i<ile; i++){
		pole[ kafel[i].x ][ kafel[i].y ]= kafel[i].kolor;
	}
	return;
}

void wyswietlKafle(){
	for(int i=0; i<y; i++){
		for(int j=0; j<x; j++){
			printf("%c",pole[j][i]);
		}
		printf("\n");
	}
	return;
}

int main(){
    char wiersz[505],ruch[500005];
    int nRuchow;

    scanf(" %d %d",&y,&x);
    for(int i=0; i<y; i++){
        scanf("%s",&wiersz);
        for(int j=0; j<x; j++){
            if(wiersz[j]!='.'){
               kafel[ile].x = j;
               kafel[ile].y = i;
               kafel[ile++].kolor = wiersz[j];
            }
       }
    }
    scanf(" %d ",&nRuchow);
    scanf(" %s ",&ruch);
    wyczyscPole();
    ustawKafle();
    //wyswietlKafle();

    for(int i=0; i<nRuchow; i++){
		switch(ruch[i]){
			case 'G':
				wGore();
				break;
			case 'D':
				wDol();
				break;
			case 'L':
				wLewo();
				break;
			case 'P':
				wPrawo();
				break;
		}
		//printf("\n");
		//wyswietlKafle();
    }

    wyswietlKafle();

    return 0;
}