zoukankan      html  css  js  c++  java
  • 广度搜索(2)

    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. 
     

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    using namespace std;
    const int maxn=150;
    char map[maxn][maxn];
    bool vis[maxn][maxn];
    int qx[maxn*maxn],qy[maxn*maxn];
    int dir[8][2]= {{1,0},{-1,0},{0,1},{0,-1},{-1,1},{-1,-1},{1,1},{1,-1}};
    int n,m,ans;

    void bfs()
    {
        int i,j;
        for(i=1;i<=n;i++)
        {
             for(j=1;j<=m;j++)
             {
                if(map[i][j]=='@'&&vis[i][j]==0)
                {
                   ans++;
                   int l=0,r=0;
                   qx[r]=i,qy[r++]=j;
                   vis[i][j]=1;
                   while(l<r)
                  {
                     int curx=qx[l],cury=qy[l++];
                     for(int t=0;t<8;t++)
                    {
                       int nx=curx+dir[t][0];
                       int ny=cury+dir[t][1];
                       if(nx>=1&&nx<=n&&ny>=1&&ny<=m&&!vis[nx][ny]&&map[nx][ny]=='@')
                      {
                          vis[nx][ny]=1;
                          qx[r]=nx,qy[r++]=ny;
                      }
                    }
                  }
                }
             }
         }
    }

    int main()
    {
        int i,j;
        while(scanf("%d%d",&n,&m)==2&&(n||m))
        {
           for(i=1;i<=n;i++)
           for(j=1;j<=m;j++)
            cin>>map[i][j];
            ans=0;
            memset(vis,0,sizeof(vis));
            bfs();
            printf("%d ",ans);
        }
        return 0;
    }

    深搜代码:

    int p[8][2]={{0,1},{0,-1},{1,0},{-1,0},{1,1},{1,-1},{-1,1},{-1,-1}};
    char ch[101][101];
    int m,n;
    void search(int x,int y)
    {
      int i,xx,yy;
      for(i=0;i<8;i++)
      {
      xx=x+p[i][0];yy=y+p[i][1];
      if(xx<0||xx>=m||yy<0||yy>=n) continue;
      if(ch[xx][yy]=='*')continue;
      ch[xx][yy]='*';
      search(xx,yy);               
      }    
    }

    int main()
    {
      int i,j,count;
      while(scanf("%d%d",&m,&n)&&m+n)
      {
      for(i=0;i<M;I++) scanf(?%s?,ch[i]);
      count=0; 
      for(i=0;i<M;I++)
      for(j=0;j<N;J++)
      {
      if(ch[i][j]=='@')
      {search(i,j);count++;}               
      }                    
      printf("%d ",count);      
      }   
    }
  • 相关阅读:
    单细胞转录组CNV分析
    瘦子增肌计划 | 健身
    WashU Epigenome Browser | ChIP-seq | DNase-Seq | ATAC-seq | 表观
    羽毛球新手教学
    可变剪切 | isoform | 提取特定exon的usage | DEXSeq
    文献快读 | 单细胞测序肾癌的免疫微环境与临床疗效的关系
    內外全科醫學士課程 | MBBS | 医疗
    天龙八部 | 中国名著 | 刷剧
    当代人工智能的基石 | 数据标注
    提取基因的特定外显子exon的碱基序列 | NCBI
  • 原文地址:https://www.cnblogs.com/chen9510/p/4705750.html
Copyright © 2011-2022 走看看