zoukankan      html  css  js  c++  java
  • hdu 1241Oil Deposits

    http://acm.hdu.edu.cn/showproblem.php?pid=1241

    Oil Deposits

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 5360    Accepted Submission(s): 3092


    Problem Description
    The GeoSurvComp geologic survey company is responsible for detecting underground oil deposits. GeoSurvComp works with one large rectangular region of land at a time, and creates a grid that divides the land into numerous square plots. It then analyzes each plot separately, using sensing equipment to determine whether or not the plot contains oil. A plot containing oil is called a pocket. If two pockets are adjacent, then they are part of the same oil deposit. Oil deposits can be quite large and may contain numerous pockets. Your job is to determine how many different oil deposits are contained in a grid.
     
    Input
    The input file contains one or more grids. Each grid begins with a line containing m and n, the number of rows and columns in the grid, separated by a single space. If m = 0 it signals the end of the input; otherwise 1 <= m <= 100 and 1 <= n <= 100. Following this are m lines of n characters each (not counting the end-of-line characters). Each character corresponds to one plot, and is either `*', representing the absence of oil, or `@', representing an oil pocket.
     
    Output
    For each grid, output the number of distinct oil deposits. Two different pockets are part of the same oil deposit if they are adjacent horizontally, vertically, or diagonally. An oil deposit will not contain more than 100 pockets.
     
    Sample Input
    1 1 * 3 5 *@*@* **@** *@*@* 1 8 @@****@* 5 5 ****@ *@@*@ *@**@ @@@*@ @@**@ 0 0
     
    Sample Output
    0 1 2 2
    View Code
     1 #include<stdio.h>
     2 #include<string.h>
     3 int n,m,sum;
     4 char mat[105][105];
     5 bool vis[105][105];
     6 void dfs(int x,int y)
     7 {
     8     if(vis[x][y])
     9     return;
    10     else
    11       {
    12         vis[x][y]=true;
    13         if(mat[x][y]=='@')
    14         {
    15             
    16             dfs(x-1,y);
    17             dfs(x-1,y+1);
    18             dfs(x,y+1);
    19             dfs(x+1,y+1);
    20             dfs(x+1,y);
    21             dfs(x+1,y-1);
    22             dfs(x,y-1);
    23             dfs(x-1,y-1);
    24         }
    25       }
    26 }
    27 int main()
    28 {
    29     int i,j;
    30     while(~scanf("%d%d",&n,&m))
    31     {
    32         if (n==0 && m==0) return 0;
    33 
    34         memset(vis,0,sizeof(vis));
    35         memset(mat,'*',sizeof(mat));
    36         for(i=0;i<=n+1;i++)
    37         {
    38             vis[i][0]=true;
    39             vis[i][m+1]=true;
    40         }
    41         for(j=0;j<=m+1;j++)
    42         {
    43             vis[0][j]=true;
    44             vis[n+1][j]=true;
    45         }
    46         for(i=1;i<=n;i++)
    47         scanf(" %s",mat[i]+1);//从下标1开始,记得mat[i]+1 
    48  
    49         sum=0;
    50         for(i=1;i<=n;i++)
    51         {
    52             
    53         
    54           for(j=1;j<=m;j++)
    55            {
    56             
    57              if(!vis[i][j]&&mat[i][j]=='@')
    58               {
    59                 sum++;
    60                 dfs(i,j);
    61                 
    62               }
    63             
    64         
    65            }
    66         }
    67         
    68         printf("%d\n",sum);
    69         
    70     }
    71 }
  • 相关阅读:
    跨浏览器的事件处理程序
    jQuery提交Form
    js 多种变量定义(对象直接量,数组直接量和函数直接量)
    Asp.net Eval 截取字符串
    sql执行顺序
    IDEA File Templates模板
    Vim快捷键大全(转)
    Rider+Unity+XLua环境配置
    一定要进行代码复查
    如何在ubuntu上面安装luasocket
  • 原文地址:https://www.cnblogs.com/1114250779boke/p/2621355.html
Copyright © 2011-2022 走看看