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;
    }
  • 相关阅读:
    浅谈ASP.NET核心对象
    SQL MID() 函数
    如何查看linux系统CPU利用率 简单
    canvas 学习笔记 简单
    linux 为用户设定、修改密码 passwd 简单
    转crontab用法(例子) 简单
    mongodb加入系统服务 简单
    转导出csv文件时,处理分隔符问题 简单
    tar和gzip、unzip命令详解 简单
    linux创建用户命令 简单
  • 原文地址:https://www.cnblogs.com/hdyss/p/10809892.html
Copyright © 2011-2022 走看看