HDU 2412 Farm Irrigation

题目:

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.

<b< dd="">

Output

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

<b< dd="">

Sample Input

2 2
DK
HF

3 3
ADC
FJK
IHE

-1 -1

<b< dd="">Sample Output

2
3

题意描述:

输入矩阵的大小和字母表示的矩阵,表示不同型号的水管摆成的形状

解题思路:
题目还是很有意思的,实际就是找找有几个独立的连通区域。将对应字母型号的水管四个方向的状态存进数组,使用广搜遍历每个水管,判断在其方向上的水管的对应方向的状态即可。

代码实现:

 1 #include<stdio.h>
 2 #include<string.h>
 3 char map[550][550];
 4 int m,n,book[550][550];
 5 void bfs(int x,int y,int c);
 6 struct n
 7 {
 8     int x,y;
 9 };
10 int main()
11 {
12     int i,j,c;
13     while(scanf("%d%d",&m,&n), n!=-1 && m!= -1)
14     {
15         for(i=0;i<m;i++)
16             for(j=0;j<n;j++)
17                 scanf(" %c",&map[i][j]);
18
19         memset(book,0,sizeof(book));
20         for(c=0,i=0;i<m;i++){
21             for(j=0;j<n;j++){
22                 if(book[i][j]==0)
23                     bfs(i,j,++c);
24             }
25         }
26         printf("%d\n",c);
27     }
28     return 0;
29 }
30 void bfs(int sx,int sy,int c)
31 {
32     struct n q[260000];
33     int i,tx,ty,head=1,tail=1,k;
34     int next[4][2]={0,1, 1,0, 0,-1, -1,0};
35     int list[6]={0,1,2,3,0,1};
36
37     int alp[11][4]={0,0,1,1, 1,0,0,1, 0,1,1,0, 1,1,0,0, 0,1,0,1, 1,0,1,0,
38      1,0,1,1, 0,1,1,1, 1,1,1,0, 1,1,0,1, 1,1,1,1};
39     q[tail].x=sx;
40     q[tail].y=sy;
41     tail++;
42     book[sx][sy]=c;
43     while(head<tail)
44     {
45         for(k=0;k<=3;k++)
46         {
47             tx=q[head].x + next[k][0];
48             ty=q[head].y + next[k][1];
49             if(tx<0 || tx>=m || ty<0 || ty>=n)//设置边界
50                 continue;
51             if(alp[ map[ q[head].x ][ q[head].y ]-‘A‘ ][list[k]] && alp[ map[tx][ty]-‘A‘ ][ list[k+2] ] && !book[tx][ty])
52             {//对准位置
53                 book[tx][ty]=c;
54                 q[tail].x=tx;
55                 q[tail].y=ty;
56                 tail++;
57             }
58         }
59         head++;
60     }
61 }

易错分析:

1、注意遍历方向的时候要对准每个水管的对应方向的状态

2、边界设置要准确

时间: 2024-10-24 05:52:32

HDU 2412 Farm Irrigation的相关文章

hdu 1198 Farm Irrigation (搜索或并查集)

Farm Irrigation Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5818    Accepted Submission(s): 2521 Problem Description Benny has a spacious farm land to irrigate. The farm land is a rectangle

HDU 1198 Farm Irrigation (并查集)

Farm Irrigation Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 5809    Accepted Submission(s): 2516 Problem Description Benny has a spacious farm land to irrigate. The farm land is a rectangle,

HDU 1198 Farm Irrigation

Farm Irrigation Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7897    Accepted Submission(s): 3418 Problem Description Benny has a spacious farm land to irrigate. The farm land is a rectangle

ZOJ 2412 Farm Irrigation

Farm Irrigation Time Limit: 2 Seconds      Memory Limit: 65536 KB 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 di

ZOJ 2412 Farm Irrigation(DFS 条件连通块)

题意  两块农田里面的管道可以直接连接的话  他们就可以共用一个水源   有11种农田  上面的管道位置是一定的  给你一个农田矩阵  问至少需要多少水源 DFS的连通块问题  两个相邻农田的管道可以直接连接的话他们就属于一个连通块  题目就是求连通块个数 #include<cstdio> #include<cstring> using namespace std; const int N = 55; char mat[N][N]; int type[11][4] = { //对应

HDU 1198 Farm Irrigation(并查集+位运算)

Farm Irrigation Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other) Total Submission(s) : 38   Accepted Submission(s) : 24 Font: Times New Roman | Verdana | Georgia Font Size: ← → Problem Description Benny has a spacious

HDU 1198 Farm Irrigation(并查集,自己构造连通条件)

Farm Irrigation Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 11188    Accepted Submission(s): 4876 Problem Description Benny has a spacious farm land to irrigate. The farm land is a rectangle

hdu 1198 Farm Irrigation(深搜dfs || 并查集)

转载请注明出处:viewmode=contents">http://blog.csdn.net/u012860063?viewmode=contents 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1198 ----------------------------------------------------------------------------------------------------------------------

HDU 1198 Farm Irrigation (并查集优化,构图)

本题和HDU畅通工程类似,只不过畅通工程给出了数的连通关系, 而此题需要自己判断连通关系,即两个水管是否可以连接到一起,也是本题的难点所在. 记录状态,不断combine(),注意只需要判断左方和上方就行,这样不会重复判断,而且肯定都可以遍历到所有的状态. #include<stdio.h> #include<iostream> #include<string> //记录水管的形状,每种水管用一个由'0'和'1'组成的长度为4的字符串代表, //分别表示上下左右四边是否