HDU 1241 Oil Deposits

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.
 

Sample Input
1 1 * 3 5 *@*@* **@** *@*@* 1 8 @@****@* 5 5 ****@ *@@*@ *@**@ @@@*@ @@**@ 0 0

Sample Output
0 1 2 2
题目大意:
输入两个整数n,m,接下来输入一个n*m的字符矩阵。当n与m都等于0时结束输入。在矩阵中有“ *”,代表没有油,或@,代表油袋。当@的八个方向有@时,这两个油袋表示相连是一个。
c++
#include <stdio.h>
#include<algorithm>
#include<iostream>
using namespace std;
char mp[101][101];
int a,b,s;
void dg(int i, int j)
{
    if(mp[i][j]!='@'||i<0||j<0||i>=a||j>=b)    //当找不到油袋或出界时返回
        return;
    else
    {
        mp[i][j]='*';      //将找到的油袋全部改为没有油的状态,并查找它的八个方向
        dg(i-1, j-1);
        dg(i-1, j);
        dg(i-1, j+1);
        dg(i, j-1);
        dg(i, j+1);
        dg(i+1, j-1);
        dg(i+1, j);
        dg(i+1, j+1);
    }
}
int main()
{
    int i, j;
    while(~scanf("%d%d",&a,&b))
    {
        if(a==0||b==0) break;
        s=0;
        for(i=0;i<a;i++)
        {
            for(j=0;j<b;j++)
            {
                cin>>mp[i][j];
            }
        }
        for(i=0;i<a;i++)
        {
            for(j=0;j<b;j++)
            {
                if(mp[i][j] == '@')    //当找到油袋时进行深搜,油袋个数加1;
                {
                    dg(i, j);
                    s++;
                }
            }
        }
        printf("%d\n",s);
    }

    return 0;
}



全部评论

相关推荐

今天周一休息,突发奇想写一篇阶段总结。如题,我已经去了一个和Java彻底毫无关联的行业。曾经我以为自己能在计算机行业发光发热,没想到刚入行一年多就当了逃兵。从最开始的热爱到现在一看到代码就厌恶,不知道自己经历了什么。所以我去干什么了?答案是:在成都当了租房销售。上班那会压力大了就念叨着去干租房中介,但是一直下不去这个决心,想着自己学了四年多的计算机知识,终究还是不甘心。终于在某一天准备八股文的时候,看着无数篇和工作内容关系不大的理论知识,那一刻下定决心,决定尝试一下销售行业,也算是给自己一个交代。后面阴差阳错的投了成都自如去当租房管家,没想到面试很顺利,在当天一百多个面试的人里面,我成为了为数不多通过的几个幸运儿之一。目前已经培训通过,正式入职,也开了单,也有压力但是每天过得很开心,真心喜欢那种和人交流的感觉,哪怕是最后没有选择找我租房。说这些也是想告诉那些大三,大四正在找Java实习而焦虑的同学:你们现在还年轻,选择很多,容错率也很高,可以尽情去尝试自己喜欢的行业和工作。不用因为某一次的面试没通过或者简历石沉大海而焦虑,更不用因为身边人都在挤编程的独木桥就强迫自己跟风。也算是自己的碎碎念吧,也希望自己能在新的领域取得一点小成就。也祝牛油工作顺利!
沉淀小子:干啥都不丢人啊,生存是必须要的,销售很考验一个人综合素质能力的,好的销售人脉和资源可不比写字楼的白领差啊
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务