搜索专项---Flood Fill

2024-02-05 10:44
文章标签 搜索 fill 专项 flood

本文主要是介绍搜索专项---Flood Fill,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


文章目录

  • 池塘计数
  • 城堡问题
  • 山峰与山谷

一、池塘计数OJ链接

1.BFS做法

#include <bits/stdc++.h>#define x first
#define y secondtypedef std::pair<int,int> PII;constexpr int N=1010;int n,m;
char g[N][N];
bool st[N][N];//用来表示已经记录过的
std::queue<PII> q;//用来表示该点已经是土地来遍历周围是否存在土地,如果有加入到队列中int dx[8] = {-1, -1, -1, 0, 1, 1, 1, 0};
int dy[8] = {-1, 0, 1, 1, 1, 0, -1, -1};void bfs(int ax,int ay)
{q.push({ax,ay});st[ax][ay]=true;while(!q.empty()){PII t=q.front();q.pop();for(int i=t.x-1;i<=t.x+1;i++)for(int j=t.y-1;j<=t.y+1;j++){if (i == t.x && j == t.y) continue;if (i < 0 || i >= n || j < 0 || j >= m) continue;if (g[i][j] == '.' || st[i][j]) continue;q.push({i,j});st[i][j]=true;}}}
int main()
{std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::cout.tie(nullptr);std::cin>>n>>m;for(int i=0;i<n;i++) std::cin>>g[i];int ans=0;for(int i=0;i<n;i++)for(int j=0;j<m;j++)if(g[i][j]=='W'&&!st[i][j]){bfs(i,j);ans++;}std::cout<<ans<<std::endl;return 0;
}

1.DFS做法

#include <bits/stdc++.h>constexpr int N=1010;int n,m;
char g[N][N];
bool st[N][N];int dx[8] = {-1, -1, -1, 0, 1, 1, 1, 0};
int dy[8] = {-1, 0, 1, 1, 1, 0, -1, -1};void dfs(int x,int y)
{st[x][y]=true;for(int i=0;i<8;i++)if(g[x+dx[i]][y+dy[i]]=='W'&&!st[x+dx[i]][y+dy[i]])dfs(x+dx[i],y+dy[i]);
}
int main()
{std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::cout.tie(nullptr);std::cin>>n>>m;for(int i=0;i<n;i++) std::cin>>g[i];int ans=0;for(int i=0;i<n;i++)for(int j=0;j<m;j++)if(g[i][j]=='W'&&!st[i][j]){dfs(i,j);ans++;}std::cout<<ans<<std::endl;return 0;
}

二、城堡问题OJ链接

1.BFS做法

#include <bits/stdc++.h>#define x first
#define y secondtypedef std::pair<int, int> PII;constexpr int N=55;int n,m;
int g[N][N];
bool st[N][N];
std::queue<PII> q;int dx[4] = {0, -1, 0, 1}, dy[4] = {-1, 0, 1, 0};int bfs(int ax,int ay)
{q.push({ax,ay});st[ax][ay]=true;int area=0;while(!q.empty()){PII t=q.front();q.pop();area++;for(int i=0;i<4;i++){int a=t.x+dx[i],b=t.y+dy[i];if(a<0||a>=n||b<0||b>=m) continue;if(st[a][b]) continue;if(g[t.x][t.y]>>i&1) continue;q.push({a,b});st[a][b]=true;}}return area;
}int main()
{std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::cout.tie(nullptr);std::cin>>n>>m;for(int i=0;i<n;i++)for(int j=0;j<m;j++)std::cin>>g[i][j];int cnt=0;int max_area=0;for(int i=0;i<n;i++)for(int j=0;j<m;j++){if(!st[i][j]){cnt++;max_area=std::max(max_area,bfs(i,j));}}std::cout<<cnt<<std::endl;std::cout<<max_area<<std::endl;return 0;
}

1.DFS做法

#include <bits/stdc++.h>constexpr int N=55;int n,m;
int g[N][N];
bool st[N][N];
int ans;int dx[4] = {0, -1, 0, 1}, dy[4] = {-1, 0, 1, 0};int dfs(int ax,int ay)
{st[ax][ay]=true;for(int i=0;i<4;i++){int a=ax+dx[i],b=ay+dy[i];if(a<0||a>=n||b<0||b>=m) continue;if(st[a][b]) continue;if(g[ax][ay]>>i&1) continue;ans+=dfs(a,b);}return 1;
}int main()
{std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::cout.tie(nullptr);std::cin>>n>>m;for(int i=0;i<n;i++)for(int j=0;j<m;j++)std::cin>>g[i][j];int cnt=0,max_area=0;for(int i=0;i<n;i++)for(int j=0;j<m;j++)if(!st[i][j]){cnt++;ans=1;dfs(i,j);max_area=std::max(max_area,ans);}std::cout<<cnt<<std::endl;std::cout<<max_area<<std::endl;return 0;
}

三、山峰与山谷OJ链接

1.BFS做法

如果在搜索过程中没有出现过比当前点更高的点,则该点及等高点组成山峰。

如果在搜索过程中没有出现过比当前点更低的点,则该点及等高点组成山谷。

#include <bits/stdc++.h>#define x first
#define y secondtypedef std::pair<int,int> PII;constexpr int N=1010;int n;
int g[N][N];
std::queue<PII> q;
bool st[N][N];void bfs(int ax,int ay,bool &has_higher,bool &has_lower)
{q.push({ax,ay});st[ax][ay]=true;while(!q.empty()){PII t=q.front();q.pop();for(int i=t.x-1;i<=t.x+1;i++)for(int j=t.y-1;j<=t.y+1;j++){if(i==t.x&&j==t.y) continue;if(i<0||i>=n||j<0||j>=n) continue;if(g[i][j]!=g[t.x][t.y]){if(g[i][j]>g[t.x][t.y]) has_higher=true;else has_lower=true;}else if(!st[i][j]){q.push({i,j});st[i][j]=true;}}}
}int main()
{std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::cout.tie(nullptr);std::cin>>n;for(int i=0;i<n;i++)for(int j=0;j<n;j++)std::cin>>g[i][j];int peek=0,valley=0;for(int i=0;i<n;i++)for(int j=0;j<n;j++)if(!st[i][j]){bool has_higher=false,has_lower=false;bfs(i,j,has_higher,has_lower);if(!has_higher) peek++;if(!has_lower) valley++;}std::cout<<peek<<" "<<valley<<std::endl;return 0;
}

这篇关于搜索专项---Flood Fill的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/680659

相关文章

C# ComboBox下拉框实现搜索方式

《C#ComboBox下拉框实现搜索方式》文章介绍了如何在加载窗口时实现一个功能,并在ComboBox下拉框中添加键盘事件以实现搜索功能,由于数据不方便公开,作者表示理解并希望得到大家的指教... 目录C# ComboBox下拉框实现搜索步骤一步骤二步骤三总结C# ComboBox下拉框实现搜索步骤一这

认识、理解、分类——acm之搜索

普通搜索方法有两种:1、广度优先搜索;2、深度优先搜索; 更多搜索方法: 3、双向广度优先搜索; 4、启发式搜索(包括A*算法等); 搜索通常会用到的知识点:状态压缩(位压缩,利用hash思想压缩)。

hdu1240、hdu1253(三维搜索题)

1、从后往前输入,(x,y,z); 2、从下往上输入,(y , z, x); 3、从左往右输入,(z,x,y); hdu1240代码如下: #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#inc

hdu 4517 floyd+记忆化搜索

题意: 有n(100)个景点,m(1000)条路,时间限制为t(300),起点s,终点e。 访问每个景点需要时间cost_i,每个景点的访问价值为value_i。 点与点之间行走需要花费的时间为g[ i ] [ j ] 。注意点间可能有多条边。 走到一个点时可以选择访问或者不访问,并且当前点的访问价值应该严格大于前一个访问的点。 现在求,从起点出发,到达终点,在时间限制内,能得到的最大

AI基础 L9 Local Search II 局部搜索

Local Beam search 对于当前的所有k个状态,生成它们的所有可能后继状态。 检查生成的后继状态中是否有任何状态是解决方案。 如果所有后继状态都不是解决方案,则从所有后继状态中选择k个最佳状态。 当达到预设的迭代次数或满足某个终止条件时,算法停止。 — Choose k successors randomly, biased towards good ones — Close

hdu4277搜索

给你n个有长度的线段,问如果用上所有的线段来拼1个三角形,最多能拼出多少种不同的? import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使

浙大数据结构:04-树7 二叉搜索树的操作集

这道题答案都在PPT上,所以先学会再写的话并不难。 1、BinTree Insert( BinTree BST, ElementType X ) 递归实现,小就进左子树,大就进右子树。 为空就新建结点插入。 BinTree Insert( BinTree BST, ElementType X ){if(!BST){BST=(BinTree)malloc(sizeof(struct TNo

【python计算机视觉编程——7.图像搜索】

python计算机视觉编程——7.图像搜索 7.图像搜索7.1 基于内容的图像检索(CBIR)从文本挖掘中获取灵感——矢量空间模型(BOW表示模型)7.2 视觉单词**思想****特征提取**: 创建词汇7.3 图像索引7.3.1 建立数据库7.3.2 添加图像 7.4 在数据库中搜索图像7.4.1 利用索引获取获选图像7.4.2 用一幅图像进行查询7.4.3 确定对比基准并绘制结果 7.

记忆化搜索【下】

375. 猜数字大小II 题目分析 题目链接:375. 猜数字大小 II - 力扣(LeetCode) 题目比较长,大致意思就是给一个数,比如说10,定的数字是7,让我们在[1, 10]这个区间猜。 如果猜大或猜小都会说明是大了还是小了,此外,我们还需要支付猜错数字对应的现金。 现在就是让我们定制一个猜测策略,确保准备最少的钱能猜对 如果采用二分查找,只能确保最小次数,题目要求的