Benny has a spacious farm land to irrigate. The farm land is a rectangle, and is divided into a lot of samll squares. Water pipes are placed in these squares. Different square has a different type of pipe. There are 11 types of pipes,
which is marked from A to K, as Figure 1 shows.
Figure 1
Benny has a map of his farm, which is an array of marks denoting the distribution of water pipes over the whole farm. For example, if he has a map
ADC
FJK
IHE
then the water pipes are distributed like
Figure 2
Several wellsprings are found in the center of some squares, so water can flow along the pipes from one square to another. If water flow crosses one square, the whole farm land in this square is irrigated and will have a good harvest in autumn.
Now Benny wants to know at least how many wellsprings should be found to have the whole farm land irrigated. Can you help him?
Note: In the above example, at least 3 wellsprings are needed, as those red points in Figure 2 show.
There are several test cases! In each test case, the first line contains 2 integers M and N, then M lines follow. In each of these lines, there are N characters, in the range of ‘A‘ to ‘K‘, denoting the type of water pipe over the
corresponding square. A negative M or N denotes the end of input, else you can assume 1 <= M, N <= 50.
For each test case, output in one line the least number of wellsprings needed.
2 2
DK
HF
3 3
ADC
FJK
IHE
-1 -1
Ignatius.L | We have carefully selected several similar problems for you:
1856
1811
1829
1558
1325
#include<stdio.h>
#include<string.h>
int arr[12][4]={{0,0,0,0},{1,0,1,0},{1,0,0,1},{0,1,1,0},{0,1,0,1},{1,1,0,0},
{0,0,1,1},{1,0,1,1},{1,1,1,0},{0,1,1,1},{1,1,0,1},{1,1,1,1}};
int p[55][55];
int root[2550];
int find(int i){
if(root[i]==i) return i;
return root[i]=find(root[i]);
}
void unio(int x,int y){
if(find(x)<=find(y)) root[y]=find(x);
else root[x]=find(y);
}
int main(){
int n,m;
while(~scanf("%d%d",&n,&m),n>0&&m>0){
memset(p,0,sizeof(p));
int i,j,t,x,y,u,v;
char ch;
for(i=1;i<=n;++i){
for(j=1;j<=m;++j)
root[i*m+j]=i*m+j;
}
for(int i=1;i<=n;++i){
getchar(); //注意此处!!!!
for(j=1;j<=m;++j){
scanf("%c",&ch);
p[i][j]=ch-'A'+1;
}
}
for(i=1;i<=n;++i){
for(j=1;j<=m;++j){
t=p[i][j];x=p[i][j-1];y=p[i-1][j];u=p[i+1][j];v=p[i][j+1];
if(arr[t][0]&&arr[y][1]) unio(find(i*m+j),find((i-1)*m+j));
if(arr[t][1]&&arr[u][0]) unio(find(i*m+j),find((i+1)*m+j));
if(arr[t][2]&&arr[x][3]) unio(find(i*m+j),find(i*m+j-1));
if(arr[t][3]&&arr[v][2]) unio(find(i*m+j),find(i*m+j+1));
}
}
int nu=0;
for(i=1;i<=n;++i){
for(j=1;j<=m;++j){
if(root[i*m+j]==i*m+j) nu++;
}
}
printf("%d\n",nu);
}
return 0;
}