博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu-1241Oil Deposits(dfs 找出不同的区块)
阅读量:4049 次
发布时间:2019-05-25

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

Oil Deposits

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
0122
 

Source
 

Recommend
Eddy   |   We have carefully selected several similar problems for you:       
将地图中给出的每个@都进行dfs 将八个发现的同一个区块中的@变成.  然后计算进行了几次dfs  就相当于有几个区块  我的代码是另外一种方法  保留dfs第一个@清除同一个区块的@剩下的就是代表有几个区块
#include
#include
#include
using namespace std;char land[105][105];int n,m,i,j,res;bool vis[105][105]={ 0};int dx[]={-1,-1,-1,0,0,1,1,1};int dy[]={-1,0,1,1,-1,-1,0,1};bool dfs(int x,int y){ if(vis[x][y]||land[x][y]=='*') return false; vis[x][y]=1; int ai,aj; for(int k=0;k<8;k++) { ai=x+dx[k]; aj=y+dy[k]; if(ai>=0&&aj>=0&&ai
>m>>n,m) { res=0; memset(vis,0,sizeof(vis)); for(i=0;i
>land[i][j]; if(land[i][j]=='@') res++; } } for(i=0;i

转载地址:http://jxfci.baihongyu.com/

你可能感兴趣的文章
在Idea中使用Eclipse编译器
查看>>
Idea下安装Lombok插件
查看>>
zookeeper
查看>>
Idea导入的工程看不到src等代码
查看>>
技术栈
查看>>
Jenkins中shell-script执行报错sh: line 2: npm: command not found
查看>>
8.X版本的node打包时,gulp命令报错 require.extensions.hasownproperty
查看>>
Jenkins 启动命令
查看>>
Maven项目版本继承 – 我必须指定父版本?
查看>>
通过C++反射实现C++与任意脚本(lua、js等)的交互(二)
查看>>
利用清华镜像站解决pip超时问题
查看>>
微信小程序开发全线记录
查看>>
CCF 分蛋糕
查看>>
解决python2.7中UnicodeEncodeError
查看>>
小谈python 输出
查看>>
Django objects.all()、objects.get()与objects.filter()之间的区别介绍
查看>>
python:如何将excel文件转化成CSV格式
查看>>
机器学习实战之决策树(一)
查看>>
机器学习实战之决策树二
查看>>
[LeetCode By Python]7 Reverse Integer
查看>>