-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path16946.cpp
96 lines (86 loc) · 1.57 KB
/
16946.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
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
#include <stdio.h>
#include <string.h>
#include <vector>
using namespace std;
int _y[4]={0,0,-1,1};
int _x[4]={-1,1,0,0};
int map[1000][1000];
int boundary[1000][1000];
int answer[1000][1000];
int m,n;
int cnt;
int tmp=3;
//boundary 에는 영역끼리 같은 수로 표기
//map에는 연결된 0의 수 표기
void back(int x,int y){
cnt++;
boundary[x][y]=tmp;
for(int i=0;i<4;i++){
int xx=x+_x[i];
int yy=y+_y[i];
if(xx>=0&&xx<m&&yy>=0&&yy<n&&boundary[xx][yy]==0){
back(xx,yy);
}
}
}
void back2(int x,int y){
map[x][y]=cnt;
for(int i=0;i<4;i++){
int xx=x+_x[i];
int yy=y+_y[i];
if(xx>=0&&xx<m&&yy>=0&&yy<n&&map[xx][yy]==0){
back2(xx,yy);
}
}
}
int main(){
scanf("%d %d",&m,&n);
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
scanf("%1d",&map[i][j]);
}
}
memcpy(boundary,map,sizeof(map));
memcpy(answer,map,sizeof(map));
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
if(boundary[i][j]==0){
cnt=0;
tmp++;
back(i,j);
back2(i,j);
}
}
}
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
if(answer[i][j]==1){
vector<int> v;
for(int p=0;p<4;p++){
int xx=i+_x[p];
int yy=j+_y[p];
if(xx>=0&&xx<m&&yy>=0&&yy<n&&boundary[xx][yy]!=1){
int check=0;
for(int k=0;k<v.size();k++){
if(v[k]==boundary[xx][yy]){
check=1;
break;
}
}
if(!check){
answer[i][j]+=map[xx][yy];
v.push_back(boundary[xx][yy]);
}
}
}
answer[i][j]=answer[i][j]%10;
}
}
}
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
printf("%d",answer[i][j]);
}
printf("\n");
}
}