zoukankan      html  css  js  c++  java
  • 【简单并查集】Farm Irrigation

    Farm Irrigation

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other)
    Total Submission(s) : 6   Accepted Submission(s) : 3

    Font: Times New Roman | Verdana | Georgia

    Font Size: ← →

    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

    题解:使用并查集,遍历每个格子的方向,把可以连通的相邻的两个格子合并成一个集合。输出N*M-Count就是独立集合的个数、

    注意,并查集的数组需要开大点,开小了结果Tle了好几次。。。

    代码:2015/10/20

     1 #include <iostream>
     2 #include <stdio.h>
     3 #define Max 5200
     4 using namespace std;
     5 int DicX[4]={0,-1,0,1};
     6 int DicY[4]={-1,0,1,0};
     7 int Sign[15][4]={
     8 1,1,0,0,//A
     9 0,1,1,0,//B
    10 1,0,0,1,//C
    11 0,0,1,1,//D
    12 0,1,0,1,//E
    13 1,0,1,0,//F
    14 1,1,1,0,//G
    15 1,1,0,1,//H
    16 1,0,1,1,//I
    17 0,1,1,1,//J
    18 1,1,1,1//K
    19 };
    20 int ID[Max];
    21 char Str[Max][Max];
    22 void Cread(int N)
    23 {
    24     for(int i=0;i<=N;i++)ID[i]=i;
    25 }
    26 int Find(int x)
    27 {
    28     if(x!=ID[x])ID[x]=Find(ID[x]);
    29     return ID[x];
    30 }
    31 int main()
    32 {
    33     int N,M,i,j,k,d;
    34     while(scanf("%d%d",&N,&M)!=EOF)
    35     {
    36         if(N<0||M<0)break;
    37         for(i=0;i<N;i++){
    38             scanf("%s",Str[i]);
    39         }
    40         int Count=0;
    41         Cread(N*M);
    42         for(i=0;i<N;i++)//遍历每一个格子
    43         {
    44             for(j=0;j<M;j++)
    45             {
    46                 for(k=0;k<4;k++)//遍历当前格子的四个方向
    47                 {
    48                     int ii=i+DicX[k];
    49                     int jj=j+DicY[k];
    50                     
    51                     if(ii<0||jj<0||ii>=N||jj>=M)continue;
    52                     if(Sign[Str[i][j]-'A'][k]&&Sign[Str[ii][jj]-'A'][(k+2)%4])
    53                     {//判断当前格子的四个方向与所相邻格子的是否可连通
    54                             int A=Find(i*M+j);
    55                             int B=Find(ii*M+jj);
    56                             if(A!=B)//合并可连通的集合
    57                             {
    58                                 ID[A]=B;
    59                                 Count++;
    60                             }
    61                     }
    62                 }
    63             }
    64         }
    65         printf("%d
    ",N*M-Count);//输出集合的个数
    66     }
    67     return 0;
    68 }
    简单并查集
  • 相关阅读:
    字典序产生全排列
    python学习1 ---range()函数
    <第一周>降维
    <第一周> city中国城市聚类 testdata学生上网聚类 例子
    Python数据分析与展示[第三周](pandas数据类型操作)
    Python数据分析与展示[第三周](pandas数据特征分析单元8)
    第一周<单元一聚类>
    第一周<导学>
    总体<导学>
    Python数据分析与展示[第三周](pandas简介与数据创建)
  • 原文地址:https://www.cnblogs.com/Wurq/p/4896058.html
Copyright © 2011-2022 走看看