博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oil Deposits
阅读量:6516 次
发布时间:2019-06-24

本文共 2634 字,大约阅读时间需要 8 分钟。

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
题意:给你一个字符矩阵,求连在一起的@符有多少堆;
解题思路:深度优先搜多,找到一个节点开始往下搜,搜到的全都标记,然后搜不到了就停止,记录搜索到的次数;
感悟:第一次自己写的搜索代码;成功跑的那一刻有点兴奋!!!
代码:
#include
#include
#include
#define maxn 110
using namespace std;
char mapn[maxn][maxn];
int direction[8][2]={
{-1,0},{1,0},{0,1},{0,-1},{-1,-1},{-1,1},{1,-1},{1,1}};
bool visit[maxn][maxn];
int m,n,sum=0;
bool isbound(int a,int b)//判断边界
{
    if(a<1||a>m||b<1||b>n)return true;
    return false;
}
void dfs(int x,int y)
{
    for(int i=0;i<8;i++)
    {
        if(mapn[x+direction[i][0]][y+direction[i][1]]=='*')
            continue;
        if(isbound(x+direction[i][0],y+direction[i][1]))
            continue;
        if(visit[x+direction[i][0]][y+direction[i][1]])
            continue;
        visit[x+direction[i][0]][y+direction[i][1]]=true;
        dfs(x+direction[i][0],y+direction[i][1]);
    }
}
int main()
{
    //freopen("in.txt","r",stdin);
    while(~scanf("%d%d\n",&m,&n)&&(m||n))//这地方应该有一个回车
    {
        //printf("m=%d n=%d\n",m,n);
        memset(visit,false,sizeof(visit));
        sum=0;
        for(int i=1;i<=m;i++)
        {
            for(int j=1;j<=n;j++)
            {
                scanf("%c",&mapn[i][j]);
            }
            scanf("\n");//每行输入结束都应该有一个回车
        }
        for(int i=1;i<=m;i++)
            for(int j=1;j<=n;j++)
            {
                if(mapn[i][j]=='@'&&!visit[i][j])
                {
                    dfs(i,j);
                    visit[i][j]=true;
                    sum++;
                }

转载于:https://www.cnblogs.com/wuwangchuxin0924/p/5781629.html

你可能感兴趣的文章
五花八门的计算机语言
查看>>
基于Yum安装zabbix3.0
查看>>
Web开发(进阶)- Django【进阶篇】
查看>>
Master-work模式
查看>>
5.7. 保护 Sendmail 的安全
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
Vmware Vcenter6.0 全新安装及群集配置介绍
查看>>
我的友情链接
查看>>
stomp-php
查看>>
Mysql慢查询日志脚本
查看>>
python字典生成式
查看>>
WampServer下Apache配置vHost
查看>>
IOS 开发证书设置
查看>>
poj1328 -贪心雷达问题
查看>>
我的友情链接
查看>>
第柒章學習 Lisp 3rd Edition, Winston & Horn
查看>>
簡單使用 tshark 命令形的 wireshark tcpdump
查看>>
git 常用指令快速上手
查看>>
Struts2教程5:使用Validation框架验证数据
查看>>