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;
    }
  • 相关阅读:
    40 +必不可少的前端Web开发备忘单
    web前端开发必读的HTML5的书籍
    Java String的内存机制
    使用C#通过Oracle.DataAccess连接Oracle,部署时需要注意版本问题
    CI(CodeIgniter)的"Disallowed Key Characters."异常处理
    开源软件许可协议简介
    读《考拉小巫的英语学习日记》有感
    vi的复制、粘贴、查找、删除等常用命令
    读《马云创业启示录》有感
    jQuery ajax 同步失效?
  • 原文地址:https://www.cnblogs.com/hdyss/p/10809892.html
Copyright © 2011-2022 走看看