1 #include<iostream>
2 #include<cstdio>
3 #include<cstring>
4 #include<cstring>
5 #include<queue>
6 using namespace std;
7 const int MAXN=51;
8 int map[MAXN][MAXN];
9 int a[2][MAXN][MAXN];
10 int bgx,bgy;
11 queue<int>how;
12 int xx[5]={-1,0,+1,0};
13 int yy[5]={0,+1,0,-1};
14 int now;// 表示当前正在处理第几个图
15 int n,m;
16 void bfs(int x,int y)
17 {
18 while(how.size()!=0)
19 {
20 int where=how.front();// 0N 1E 2S 3W
21 how.pop();
22 int will;
23 if(now==0)will=1;
24 else will=0;
25 for(int i=1;i<=n;i++)
26 for(int j=1;j<=m;j++)
27 a[will][i][j]=0;
28 /*for(int i=1;i<=n;i++)
29 for(int j=1;j<=m;j++)
30 a[will][i][j]=a[now][i][j];*/
31 for(int i=1;i<=n;i++)
32 for(int j=1;j<=m;j++)
33 {
34 if(a[now][i][j]==2)
35 {
36 //a[now][i][j]=0;
37 int p=1;
38 while(1)
39 {
40 int wx=p*xx[where]+i;
41 int wy=p*yy[where]+j;
42 p++;
43 if(wx>=1&&wx<=n&&wy>=1&&wy<=m&&map[wx][wy]!=1)
44 a[will][wx][wy]=2;
45 else break;
46 }
47 }
48 }
49 now=will;
50 }
51 }
52 int main()
53 {
54
55 char c;
56 scanf("%d%d",&n,&m);
57 for(int i=1;i<=n;i++)
58 for(int j=1;j<=m;j++)
59 {
60 cin>>c;
61 if(c=='.') map[i][j]=0;
62 else if(c=='X') map[i][j]=1;
63 else if(c=='*') {map[i][j]=2;bgx=i;bgy=j;}
64 }
65 int t;
66 scanf("%d",&t);
67 for(int i=1;i<=t;i++)
68 {
69 string p;
70 cin>>p;
71 if(p[0]=='N') how.push(0);
72 else if(p[0]=='E') how.push(1);
73 else if(p[0]=='S') how.push(2);
74 else if(p[0]=='W') how.push(3);
75 }
76 for(int i=1;i<=n;i++)
77 for(int j=1;j<=m;j++)
78 a[0][i][j]=map[i][j];
79 bfs(bgx,bgy);
80 for(int i=1;i<=n;i++)
81 {
82 for(int j=1;j<=m;j++)
83 {
84 if(map[i][j]==1)printf("X");
85 else if(a[now][i][j]==2)printf("*");
86 else printf(".");
87 }
88 printf("\n");
89 }
90
91 return 0;
92 }