杭电oj-----Farm Irrigation(BFS)

Farm Irrigation

题目链接:              杭电oj 1198

题目说明:

此方法主要是利用了搜索的思路来归并所有能够连通的管道。

题目描述:

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.
 


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 
 


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

 

样例输出:

2

3

代码:

#include<iostream>
#include<cstring>
#include<queue>
#include<cstdio>
#define MAX 55
using namespace std;
char map[MAX][MAX];
int judge[MAX][MAX]={0}; 
int N,M;
int ans;//水源个数 
int square[11][4]={
						{1,0,0,1},//A	0
						{1,1,0,0},//B	1
						{0,0,1,1},//C	2
						{0,1,1,0},//D	3
						{1,0,1,0},//E	4
						{0,1,0,1},//F	5
						{1,1,0,1},//G	6
						{1,0,1,1},//H	7	
						{0,1,1,1},//I	8
						{1,1,1,0},//J	9
						{1,1,1,1},//K	10
				  };	
				  //定义管道的11种结构 
				  
int dir[4][2]={
					{-1,0},//上 
					{0,1},//右 
					{1,0},//下 
					{0,-1},//左 
			  };
			  //定义4个搜索方向 
		  
typedef struct Element
{
    int x;
    int y;
    char elem;
}Element; //以结构体来存元素的信息 

Element elem;
Element elem_deal;
queue<Element> q;//定义队列容器用以处理数据 
Element x;

void drow_map()			//录入地图 
{
	int i,j;
    for(i=0;i<N;i++)
    {
        getchar();
        for(j=0;j<M;j++)
        {
            cin>>map[i][j];
        }    
    }
    
}

void print()		//输出处理过后的数据,此题无需用到 
{
	int i,j;
	for(i=0;i<N;i++)
    {
        for(j=0;j<M;j++)
        {
            cout<<judge[i][j];
        }    
        cout<<endl;
    }
    cout<<endl;
}

void queue_deal(Element x)	//利用队列来对农场管道进行处理 
{
	int i,j,t;
    q.push(x);
    while(!q.empty())
    {
        elem=q.front();		//取队首元素 
        judge[elem.x][elem.y]=ans;//把能连通的区域用同一数值表示 
        q.pop();			//队首元素出队 
        {
            for(i=0;i<4;i++)
            {
            	t=i+2;//用以判断缺口 
            	if(square[elem.elem-'A'][i]==0)		//判断管道是否在此方向有缺口 
				{
					continue;
				}
				else
				{
					elem_deal.x=elem.x+dir[i][0];
					elem_deal.y=elem.y+dir[i][1];
					if(elem_deal.x<N&&elem_deal.x>=0&&elem_deal.y<M&&elem_deal.y>=0&&judge[elem_deal.x][elem_deal.y]==0)
					//判断是否越界或被处理过 
					{
						elem_deal.elem=map[elem_deal.x][elem_deal.y];
						if(t>=4)
						t=t%4;
						if(square[elem_deal.elem-'A'][t]==1)//判断被连接的管道是否在相反的方向有缺口 
						q.push(elem_deal);
					}
				}  
            }
        }
	
    }
    ans++;
}

void deal()		//处理 
{
	int i,j;
    ans=1;
    for(i=0;i<N;i++)
    for(j=0;j<M;j++)
    {
        if(judge[i][j]==0)
        {
            x.x=i;
            x.y=j;
            x.elem=map[i][j];
            queue_deal(x);
        }
		else
		continue;        
    }
}

int main()
{
    while(1)
    {
        cin>>N>>M;
        if(N==-1&&M==-1)
        break;
        drow_map();
        deal();
        cout<<ans-1<<endl;
        memset(map,'0',sizeof(map));
        memset(judge,0,sizeof(judge));
    }
return 0;
}

 

全部评论

相关推荐

真tmd的恶心,1.面试开始先说我讲简历讲得不好,要怎样讲怎样讲,先讲背景,再讲技术,然后再讲提升多少多少,一顿说教。2.接着讲项目,我先把背景讲完,开始讲重点,面试官立即打断说讲一下重点,无语。3.接着聊到了项目的对比学习的正样本采样,说我正样本采样是错的,我解释了十几分钟,还是说我错的,我在上一家实习用这个方法能work,并经过市场的检验,并且是顶会论文的复现,再怎么不对也不可能是错的。4.面试官,说都没说面试结束就退出会议,把面试者晾在会议里面,丝毫不尊重面试者难受的点:1.一开始是讲得不好是欣然接受的,毕竟是学习。2.我按照面试官的要求,先讲背景,再讲技术。当我讲完背景再讲技术的时候(甚至已经开始蹦出了几个技术名词),凭什么打断我说讲重点,是不能听出人家重点开始了?这也能理解,每个人都有犯错,我也没放心上。3.我自己做过的项目,我了解得肯定比他多,他这样贬低我做过的项目,说我的工作是错误的,作为一个技术人员,我是完全不能接受的,因此我就和他解释,但无论怎么解释都说我错。凭什么,作为面试官自己不了解相关技术,别人用这个方式work,凭什么还认为这个方法是错的,不接受面试者的解释。4.这个无可厚非,作为面试官,不打招呼就退出会议,把面试者晾着,本身就是有问题。综上所述,我现在不觉得第一第二点也是我的问题,面试官有很大的问题,就是专门恶心人的,总结面试官说教,不尊重面试者,打击面试者,不接受好的面试者,技术一般的守旧固执分子。有这种人部门有这种人怎么发展啊。最后去查了一下,岗位关闭了。也有可能是招到人了来恶心人的,但是也很cs
牛客20646354...:招黑奴啊,算法工程师一天200?
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务