POJ 2386 Lake Counting

转载请注明出处忆梦http://blog.csdn.net/fjy4328286/article/details/9427393




题目大意:有N*M的矩阵稻田,'W'表示有积水的地方, '.'表示是干旱的地方,问稻田内一共有多少块积水,根据样例很容易得出,积水是8个方向任一方向相连即可。 

题解:直接广搜,遍历一下,用vis数组标记已经搜到了的,搜到了的就vis = 1

#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#define N 105
using namespace std;

int x[] = {-1,0,1,1,1,0,-1,-1};
int y[] = {1,1,1,0,-1,-1,-1,0};

bool vis[N][N];
char map[N][N];
int n, m;

typedef struct Node
{
	int x, y;
};
queue<Node>Q;
void BFS()
{
	Node temp, s;
	while(!Q.empty())
	{
		s = Q.front();
		Q.pop();

		temp.x = s.x;
		temp.y = s.y;

		for(int i = 0; i < 8; i++)
		{
			int a = temp.x + x[i];
			int b = temp.y + y[i];

			if(a >= 0 && a< n && b >= 0 && b < m && !vis[a][b] && map[a][b] == 'W')
			{
				vis[a][b] = 1;
				s.x = a;
				s.y = b;
				Q.push(s);
				
			}
		}
	}
}

int main ()
{
	Node temp;
	int i, j;
	scanf("%d %d", &n ,&m);

	for(i = 0; i < n; i++)
		scanf("%s", map[i]);

	memset(vis, 0, sizeof(vis));
	int ans = 0;
	for(i = 0; i < n; i++)
		for(j = 0; j < m; j++)
		{

			if(map[i][j] == 'W' && !vis[i][j])
			{
				vis[i][j] = 1;
				temp.x = i;
				temp.y = j;
				Q.push(temp);
				BFS();
				ans++;
			}
		}

		printf("%d\n", ans);
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值