zoukankan      html  css  js  c++  java
  • 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, 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 2
    DK
    HF
    3 3
    ADC
    FJK
    IHE
    -1 -1
     
    Sample Output
    2
    3
     
    Author
    ZHENG, Lu
     
    Source
     
    Recommend
    Ignatius.L
     

    这道题就是问给定的图中能构成几个连通块。

    既然是求连通块,那么就可以用并查集来做,但是这里怎么去判断连通情况要考虑考虑

    我假定每一个方块有四个方向,如果这个方向能延伸出去和其他方块连通的话,那么就给这个方向设定为1,否则为0

    然后对每一个方块进行枚举,如果能连通就合并。

    最后统计根节点个数就行了。

     1 #include<cstdio>
     2 #include<cstring>
     3 #include<stdlib.h>
     4 #include<algorithm>
     5 using namespace std;
     6 const int MAXN=55;
     7 char ch;
     8 int a[MAXN][MAXN],p[MAXN*MAXN];
     9 int dir[4][2]={{-1,0},{0,1},{1,0},{0,-1}};//寻找方向:上右下左
    10 int map[11][4]={{1,0,0,1},//从上右下左四个方向依次列出每一个方块的连通情况
    11                 {1,1,0,0},
    12                 {0,0,1,1},
    13                 {0,1,1,0},
    14                 {1,0,1,0},
    15                 {0,1,0,1},
    16                 {1,1,0,1},
    17                 {1,0,1,1},
    18                 {0,1,1,1},
    19                 {1,1,1,0},
    20                 {1,1,1,1}
    21                 };
    22 int Find(int x)
    23 {
    24     return p[x]==x?x:p[x]=Find(p[x]);
    25 }
    26 
    27 void Union(int a,int b)
    28 {
    29     int x=Find(a);
    30     int y=Find(b);
    31     if(x!=y)
    32         p[x]=y;
    33 }
    34 
    35 int main()
    36 {
    37     //freopen("in.txt","r",stdin);
    38     int n,m;
    39     while(scanf("%d %d%*c",&m,&n)&&m>0)
    40     {
    41         for(int i=0;i<m;i++)
    42         {
    43             for(int j=0;j<n;j++)
    44             {
    45                 scanf("%c",&ch);
    46                 a[i][j]=ch-'A';
    47             }
    48             getchar();
    49         }
    50 
    51         for(int i=0;i<n*m;i++)
    52             p[i]=i;
    53 
    54         for(int i=0;i<m;i++)
    55         {
    56             for(int j=0;j<n;j++)
    57             {
    58                 for(int k=0;k<4;k++)
    59                 {
    60                     int next_x,next_y;
    61                     next_x=i+dir[k][0];
    62                     next_y=j+dir[k][1];
    63                     if(0<=next_x&&next_x<m&&0<=next_y&&next_y<n)
    64                     {
    65                         if(k==0)
    66                         {
    67                             if(map[a[next_x][next_y]][2]&&map[a[i][j]][0])
    68                                 Union(next_x*n+next_y,i*n+j);
    69                         }
    70                         if(k==1)
    71                         {
    72                             if(map[a[next_x][next_y]][3]&&map[a[i][j]][1])
    73                                 Union(next_x*n+next_y,i*n+j);
    74                         }
    75                         if(k==2)
    76                         {
    77                             if(map[a[next_x][next_y]][0]&&map[a[i][j]][2])
    78                                 Union(next_x*n+next_y,i*n+j);
    79                         }
    80                         if(k==3)
    81                         {
    82                             if(map[a[next_x][next_y]][1]&&map[a[i][j]][3])
    83                                 Union(next_x*n+next_y,i*n+j);
    84                         }
    85                     }
    86                 }
    87             }
    88         }
    89 //        for(int i=0;i<n*m;i++)
    90 //            printf("%d ",p[i]);
    91 //        printf("
    ");
    92 
    93         int cnt=0;
    94         for(int i=0;i<n*m;i++)
    95             if(p[i]==i)
    96                 cnt++;
    97         printf("%d
    ",cnt);
    98     }
    99 }
    View Code
  • 相关阅读:
    java 判断返回值的类型
    使用反射报异常:object is not an instance of declaring class解决方案
    InvocationTargetException 异常
    在MyEclipse下统计工程的代码(package、行数、类个数)
    跨域问题,及解决方案
    封装原生Ajax发送请求
    win10系统,打不开个性化,并且报错找不到指定模块
    jquery删除内容是动态修改序号
    使用jquery实现返回顶部按钮
    jquery监听video标签视频播放暂停状态
  • 原文地址:https://www.cnblogs.com/clliff/p/3909520.html
Copyright © 2011-2022 走看看