zoukankan      html  css  js  c++  java
  • Oil Deposit

    题目描述:

    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.

    输入:

    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.

    输出:

    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.

    样例输入:
    1 1
    *
    3 5
    *@*@*
    **@**
    *@*@*
    1 8
    @@****@*
    5 5
    ****@
    *@@*@
    *@**@
    @@@*@
    @@**@
    0 0
    
    样例输出:
    0
    1
    2
    2
    
    #include<iostream>
    #include<stdio.h>
    #include<queue>
    using namespace std;
    char maze[101][101];
    bool mark[101][101];
    int go[8][2]={
    1,0,
    -1,0,
    0,1,
    0,-1,
    -1,-1,
    1,1,
    -1,1,
    1,-1
    };
    int m,n;
    void dfs(int x,int y){
        for (int i=0;i<8;i++){
            int nx=x+go[i][0];
            int ny=y+go[i][1];
            if (nx<0||nx>=m||ny<0||ny>=n) continue;
            if (maze[nx][ny]=='*' || mark[nx][ny]==true) continue;
            mark[nx][ny]=true;
            dfs(nx,ny);
        }
        return;
    }
    
    int main (){
        
        while (cin>>m>>n && !(m==0&&n==0)){
            for (int i=0;i<m;i++){
                //getchar(); 
                for (int j=0;j<n;j++){
                    //scanf("%c",maze[i][j]);
                    cin>>maze[i][j];
                    mark[i][j]=false;
                }
            }
    
            int ans=0;
            for (int i=0;i<m;i++){
                for (int j=0;j<n;j++){
                    if (maze[i][j]=='*') continue;
                    if (mark[i][j]==true) continue;
                    dfs(i,j);
                    ans++;
                }
            }
            cout<<ans<<endl;
        }
    
        return 0;
    }

     这种将相邻的点合成块的算法有一个专有名词,floodfill

  • 相关阅读:
    百度“搜索设置”之等待页面加载完成的3中等待方式
    百度“搜索设置”之基于定位下拉框或者需要点击link才显示的下拉框,二次定位与多次定位实现的实际效果区别
    百度“搜索设置”之关于在页面定位某元素,而其中又参杂动态页面存在的问题解决方法
    兔展首页登录练习
    百度贴吧爬虫练习
    简述Session 、Cookie、cache 区别
    运行Shell脚本的几种方式解析
    (一)PHP简介
    road习题(二)
    road习题(一)
  • 原文地址:https://www.cnblogs.com/yexiaoqi/p/7241302.html
Copyright © 2011-2022 走看看