UVA Oil Deposits

22 篇文章 0 订阅
10 篇文章 0 订阅

题目如下:

Oil Deposits 

The GeoSurvComp geologic survey company is responsible for detectingunderground oil deposits. GeoSurvComp works with one large rectangularregion of land at a time, and createsa grid that divides the land into numerous square plots. It then analyzeseach plot separately,using sensing equipment to determine whether or not the plot contains oil.

A plot containingoil is called a pocket. If two pockets are adjacent, then they are part ofthe same oil deposit. Oildeposits can be quite large and may contain numerous pockets. Your job is todetermine how many different oil deposits are contained in a grid.

Input 

The input file contains one or more grids. Each grid begins with a linecontaining m and n, thenumber of rows and columns in the grid, separated by a single space. If m = 0 it signals the endof the input; otherwise $1 \le m \le 100$and $1 \le n \le 100$.Followingthis are m lines of n characterseach (not counting the end-of-line characters). Each character corresponds toone plot, and iseither ` *', representing the absence of oil, or ` @', representing an oil pocket.

Output 

For each grid, output the number of distinct oil deposits. Two differentpockets are part of thesame 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

求连块的个数,图的深度优先搜索。

AC的代码如下:

#include 
   
   
    
    

using namespace std;
bool vis[110][110];
char maps[110][110];

void dfs(int x,int y,int m,int n)

{
    if(x>=m||x<0||y>=n||y<0)
        return;
    if(maps[x][y]=='@'&&!vis[x][y])
    {
        vis[x][y]=1;
        dfs(x-1,y,m,n);
        dfs(x-1,y-1,m,n);
        dfs(x-1,y+1,m,n);
        dfs(x,y+1,m,n);
        dfs(x,y-1,m,n);
        dfs(x+1,y,m,n);
        dfs(x+1,y+1,m,n);
        dfs(x+1,y-1,m,n);

    }
}
int main()
{
    int m,n;
    while(cin>>m>>n)
    {
        int cnt=0;
        if(m==0)
            break;
        memset(maps,0,sizeof maps);
        memset(vis,0,sizeof vis);
        for(int i=0; i
    
    
     
     >maps[i][j];
        for(int i=0; i
     
     
    
    
   
   

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值