• 暑假集训(1)第七弹 -----Oil Deposits(Poj1562)


    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
     
    问题分析:依旧是用的bfs,虽然说dfs更好。。。。。,但是用bfs的话要注意让它搜完再进行下一次搜索,直到把所有油田走完,。
     
    注意:此题描述的退出条件有误,应该是吗n>0才会退出,而且“An oil deposit will not contain more than 100 pockets.”这句描述无意义。
      1 #include "iostream"
      2 #include "queue"
      3 using namespace std;
      4 struct person
      5 {
      6     int i;
      7     int j;
      8 };
      9 char o[105][105];
     10 void obegin(int n,int m)
     11 {
     12    int i,j;
     13     for (i=0;i<=n+1;i++)
     14      for (j=0;j<=m+1;j++)
     15     {
     16         if (i*j == 0 || i == n+1 || j == m+1)
     17             o[i][j] = '*';
     18         else
     19             cin>>o[i][j];
     20     }
     21 }
     22 int dfs(int n,int m)
     23 {
     24    queue <person> p;
     25    person fir,sec;
     26    int c=0;
     27    int f;
     28    for (int i=1;i<=n;i++)
     29     for (int j=0;j<=m;j++)
     30       if (o[i][j] == '@')
     31      {
     32          f=0;
     33          fir.i = i;
     34          fir.j = j;
     35          c++;
     36          p.push(fir);
     37          while (!p.empty())
     38          {
     39             sec = p.front();
     40             p.pop();
     41             for (int k=1;k<=8;k++)
     42             {
     43                 switch(k)
     44                 {
     45                   case 1: if (o[sec.i+1][sec.j] == '@')
     46                               {
     47                                   fir.i=sec.i+1;
     48                                   fir.j=sec.j;
     49                               }break;
     50                   case 2:if (o[sec.i-1][sec.j] == '@')
     51                               {
     52                                   fir.i=sec.i-1;
     53                                   fir.j=sec.j;
     54                               }break;
     55                   case 3:if (o[sec.i][sec.j+1] == '@')
     56                               {
     57                                   fir.i=sec.i;
     58                                   fir.j=sec.j+1;
     59                               }break;
     60                   case 4:if (o[sec.i][sec.j-1] == '@')
     61                               {
     62                                   fir.i=sec.i;
     63                                   fir.j=sec.j-1;
     64                               }break;
     65                   case 5:if (o[sec.i+1][sec.j+1] == '@')
     66                               {
     67                                   fir.i=sec.i+1;
     68                                   fir.j=sec.j+1;
     69                               }break;
     70                   case 6:if (o[sec.i+1][sec.j-1] == '@')
     71                               {
     72                                   fir.i=sec.i+1;
     73                                   fir.j=sec.j-1;
     74                               }break;
     75                   case 7:if (o[sec.i-1][sec.j-1] == '@')
     76                               {
     77                                   fir.i=sec.i-1;
     78                                   fir.j=sec.j-1;
     79                               }break;
     80                   case 8:if (o[sec.i-1][sec.j+1] == '@')
     81                               {
     82                                   fir.i=sec.i-1;
     83                                   fir.j=sec.j+1;
     84 
     85                               }break;
     86                 }
     87                 if (o[fir.i][fir.j] == '@')
     88                 {
     89                     o[fir.i][fir.j]='#';
     90                     p.push(fir);
     91                     f++;
     92                 }
     93                 if (f/100 == 1)
     94                 {
     95                     f=0;
     96                     c++;
     97                 }
     98             }
     99          }
    100      }
    101      return c;
    102 }
    103 int main()
    104 {
    105    int n,m;
    106    while (cin>>m>>n && n)
    107    {
    108         obegin(m,n);
    109         cout<<dfs(m,n)<<endl;
    110    }
    111     return 0;
    112 }
    View Code
     
     
     
  • 相关阅读:
    .NET开发人员遇到Maven
    基于VS Code创建Java command-line app
    IntelliJ IDEA连接TFS local workspace无法正常签入
    Xcode连接TFS Git用户名和密码不正确解决方案
    Fiddler如何捕捉DefaultHttpClient的HTTP请求
    IIS 6的日志time-taken字段没有值的解决方案
    简单的音乐轮播JS
    SpringCloud分布式开发理解
    SpringCloud分布式开发五大神兽
    socket长连接和短链接区别
  • 原文地址:https://www.cnblogs.com/huas-zlw/p/5676949.html
Copyright © 2020-2023  润新知