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;
    }
  • 相关阅读:
    php 基本符号
    php-fpm 启动和关闭
    php redis安装
    nginx 的安装
    Windows下Nginx的安装与配置
    apache 限制IP网段访问
    解决mysql导入导出数据乱码问题
    log_bin_trust_function_creators错误解决
    Mysqlbinlog使用
    通过yum安装Nagios
  • 原文地址:https://www.cnblogs.com/hdyss/p/10809892.html
Copyright © 2011-2022 走看看