蓝桥杯-岛屿个数

本文介绍了一个编程问题,涉及如何利用深度优先搜索(DFS)和广度优先搜索(BFS)算法来确定在一个给定的二维数组中,是否存在由连续整数构成的子岛屿且不能通过海洋到达边界。程序通过遍历数组并标记访问过的节点,判断每个岛屿是否满足子岛屿条件。
摘要由CSDN通过智能技术生成

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

solution

数1的块数题,加了内岛不计入的小限制,以及输入数据间没有空格,不是矩阵形式的整数输入。

  • 判断是否是子岛屿:如果该岛屿有边缘部分或者可以通过外海走到边缘部分说明不是子岛屿
#include<iostream>
#include<queue>
#include<string>
using namespace std;
const int maxn = 55;
int t, n, m, a[maxn][maxn], flag[maxn][maxn], vis[maxn][maxn], ans;
string s;
struct Node{
	int x, y;
}node, node1;
int X[8] = {-1, 1, 0, 0, 1, -1, 1, -1};
int Y[8] = {0, 0, -1, 1, 1, -1, -1, 1};

void bfs(int x, int y){
	queue<Node> q;
	node.x = x;
	node.y = y;
	flag[x][y] = 1;
	q.push(node);
	while(!q.empty()){
		Node top = q.front();
		q.pop();
		for(int i = 0; i < 4; i++){
			int newx = top.x + X[i];
			int newy = top.y + Y[i];
			if(newx < 0 || newx >= m || newy < 0 || newy >= n) continue;
			if(flag[newx][newy] || !a[newx][newy]) continue;
			node1.x = newx;
			node1.y = newy;
			flag[newx][newy] = 1;
			q.push(node1);
		}
	}
}

bool judge(int x, int y){
	for(int i = 0; i < m; i++){
		for(int j = 0; j < n; j++){
			vis[i][j] = 0;
		}
	}
	queue<Node> q;
	node.x = x;
	node.y = y;
	vis[x][y] = 1;
	q.push(node);
	while(!q.empty()){
		Node top = q.front();
		q.pop();
		if(top.x == 0 || top.x == m - 1 || top.y == 0 || top.y == n - 1) return true;//能走到边缘就证明没有在环内
		for(int i = 0; i < 8; i++){
			int newx = top.x + X[i];
			int newy = top.y + Y[i];
			if(vis[newx][newy] || a[newx][newy]) continue;
			if(x < 0 || x >= m || y < 0 || y >= n) continue;
			node1.x = newx;
			node1.y = newy;
			q.push(node1);
			vis[newx][newy] = 1;
		}
	}
	return false;
}

int main(){
	scanf("%d", &t);
	while(t--){
		scanf("%d%d", &m, &n);
		ans = 0;
		for(int i = 0; i < m; i++){
			cin >> s;
			for(int j = 0; j < n; j++){
				a[i][j] = s[j] - '0';
				flag[i][j] = 0;
			}
		}
		for(int i = 0; i < m; i++){
			for(int j = 0; j < n; j++){
				if(!flag[i][j] && a[i][j]){
					bfs(i, j);
					if(judge(i, j)) ans ++;
				}
			}
		}
		printf("%d\n", ans);
	}	
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值