zoukankan      html  css  js  c++  java
  • hdoj

    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.

     题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1241

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    using namespace::std;
    
    int m,n,num=0;
    int b[8][2]={{1,0},{1,1},{0,1},{-1,1},{-1,0},{0,-1},{-1,-1},{1,-1}};
    char map[105][105];
    int a[105][105];
    
    void dfs(int i, int j)
    {
        for(int k = 0;k<8;k++)
        {
            int x = i+b[k][0];
            int y = j+b[k][1];
            if(x>=0 && y>=0 && x<m && y<n && a[x][y] == 0 && map[x][y] == '@')
            {
                a[x][y] = 1;
                dfs(x,y);
            }
        }
    }
    int main()
    {
        while(scanf("%d %d",&m,&n) && m != 0)
        {
            memset(map,0,sizeof(map));          //清空地图和标记
            memset(a,0,sizeof(a));
            num = 0;
            for(int i = 0;i<m;i++)
            {
                scanf("%s",map[i]);
            }
            for(int i=0;i<m;i++)
            {
                for(int j = 0;j<n;j++)
                {
                    if(a[i][j] == 0 && map[i][j] == '@')
                    {
                        num++;
                        a[i][j] = 1;
                        dfs(i,j);
                    }
                }
            }
            printf("%d
    ",num);
        }
        return 0;
    }
  • 相关阅读:
    openOPC与监控页面二
    Node教程——Gulp前端构建工具-教程
    回到顶部插件
    《软件测试52讲》——测试基础知识篇
    计算贝塞尔曲线上点坐标
    少年,不要滥用箭头函数啊
    JS属性defer
    leetcode-572-另一个树的子树
    leetcode-9.-回文数
    leetcode-300-最长上升子序列
  • 原文地址:https://www.cnblogs.com/hdyss/p/10809892.html
Copyright © 2011-2022 走看看