hdu 1198 Farm Irrigation

来源:互联网 发布:art算法原理 编辑:程序博客网 时间:2024/06/10 12:24
Problem Description
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.
 

Input
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.
 

Output
For each test case, output in one line the least number of wellsprings needed.
 

Sample Input
2 2DKHF3 3ADCFJKIHE-1 -1
 

Sample Output
23
 
#include<stdlib.h>#include<string.h>#include<stdio.h>#include<ctype.h>#include<math.h>#include<queue>using namespace std;int n, m ,sum, countt, flag;char str[110][110];int used[110][110];struct node{int x, y;};int dir[11][4]={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};(  11个字母的四个方向   上 下 左 右    能走就标记为1 )int mx[4]={ -1, 1, 0, 0 }int my[4]={ 0, 0, -1, 1 };(   这个移动方向顺序要和上面的dir数组方向对照着    四个方向顺序为 上  下  左  右   》void bfs( int x,int y ){node now, next;queue<node>q;while( !q.empty() )q.pop();now.x=x;now.y=y;q.push( now );while( !q.empty() ){now=q.front();q.pop();for( int i=0;i<4;i++ )  ( 上 下  左  右 ){if( dir[str[now.x][now.y]-'A'][i]==0 )  (  当前字母在此方向不通 )continue;next.x=now.x+mx[i];next.y=now.y+my[i];if( next.x<0||next.x>=n||next.y<0||next.y>=m||used[next.x][next.y] )continue;if( i==0 ){if( dir[str[next.x][next.y]-'A'][1] ){used[next.x][next.y]=1;q.push( next );}}else if( i==1 ){if( dir[str[next.x][next.y]-'A'][0] ){used[next.x][next.y]=1;q.push( next );}}else if( i==2 ){if( dir[str[next.x][next.y]-'A'][3] ){used[next.x][next.y]=1;q.push( next );}}else{if( dir[str[next.x][next.y]-'A'][2] ){used[next.x][next.y]=1;q.push( next );}}}}}int main(){int i, j, k, t, cas=0;while( scanf( "%d%d",&n,&m ),n+m!=-2 ){for( i=0;i<n;i++ )scanf( "%s",str[i] );memset( used,0,sizeof( used ) );countt=0;for( i=0;i<n;i++ ){for( j=0;j<m;j++ ){if( used[i][j] )continue;used[i][j]=1;bfs( i, j );countt++;}}printf( "%d\n",countt );}return 0;}


0 0