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;
    }
  • 相关阅读:
    腾讯// 反转字符串
    腾讯//Multiply Strings 字符串相乘
    腾讯//盛最多水的容器
    腾讯//删除排序数组中的重复项
    腾讯//删除排序数组中的重复项
    C语言中的预处理命令
    Python十大应用领域与就业方向
    Python的主要应用领域及应用场景
    Git命令_git status
    Git命令_git add快速添加文件到暂存区
  • 原文地址:https://www.cnblogs.com/hdyss/p/10809892.html
Copyright © 2011-2022 走看看