hdu1241 Oil Deposits 同poj 2386 Lake Counting

所给实例的“5 5 ”第二个5后还有一个空格,测试的时候出错,但后台数据没有那个空格,可以过

#include<stdio.h>
#include<queue>
using namespace std;
struct node
{
	int x,y;
};
char map[100][100];
int n,m;
int dir[8][2]={-1,-1, 0,-1,  1,-1,  -1,0,  1,0,  -1,1,  0,1,  1,1};
void bfs(int i,int j)
{
	int k;
	map[i][j]='*';
	queue<node>q;
	node cur,next;
	cur.x=i;
	cur.y=j;
	q.push(cur);
	while(!q.empty())
	{
		cur=q.front();
		q.pop();
		for(k=0;k<8;k++)
		{
			next.x=cur.x+dir[k][0];
			next.y=cur.y+dir[k][1];
			if(next.x>=0&&next.x<m&&next.y>=0&&next.y<n)
			{
				if(map[next.x][next.y]=='@')
				{
					map[next.x][next.y]='*';
					q.push(next);
				}
			}
		}
	}
}
int main()
{
	int i,j,sum=0;
	while(scanf("%d%d",&m,&n),m)
	{
		getchar();
		sum=0;
		for(i=0;i<m;i++)
			gets(map[i]);
		for(i=0;i<m;i++)
			for(j=0;j<n;j++)
				if(map[i][j]=='@')
				{
					sum++;
					bfs(i,j);
				}
		printf("%d\n",sum);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值