-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10279.cpp
68 lines (67 loc) · 1.52 KB
/
10279.cpp
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
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <string>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
int dx[]= {-1,-1,-1,0,0,1,1,1};
int dy[]= {-1,0,1,-1,1,-1,0,1};
main()
{
char a[100][100],b[100][100];
int n,m,tc,t=1;
cin>>tc;
while(tc--)
{
scanf("%d",&n);
getchar();
for(int i=0; i<n; i++)
gets(a[i]);
for(int i=0; i<n; i++)
gets(b[i]);
int flag=0;
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
if(b[i][j]=='x'&& a[i][j]!='*')
{
int count=0;
for(int k=0; k<8; k++)
{
int x=i+dx[k];
int y=j+dy[k];
if(x>=0 && y>=0 && x<n && y<n && a[x][y]=='*')
count++;
}
b[i][j]=count+'0';
}
else if(b[i][j]=='x' && a[i][j]=='*')
flag=1;
}
}
if(flag==1)
{
for(int i=0;i<n;i++)
for(int j=0;j<n;j++)
if(a[i][j]=='*')
b[i][j]='*';
}
if(t!=1)
puts("");
t++;
for(int i=0; i<n; i++)
{
puts(b[i]);
}
}
return 0;
}