为了练习,用BFS写的,应用的还不是很熟练..
启示:边界条件考虑清楚(判断各种flag)。由于flag成立的等价条件判断错误,这题卡了很久,总而言之,还是要多练习,
在搜索过程中的后续状态如何调整判断不清。
至于之后的打印,可能实现起来比较复杂点了。
看了其他人的代码,发现先遍历判断图的边界比较好写,特殊情况先处理
#include<iostream>
#include<string.h>
#include<algorithm>
#include<queue>
using namespace std;
#define M 100
int n,m,k;
int flag;
char map[M][M];
int vis[M][M];//vis是用来防止重复计算的,所以一般在求最大连通分量,或者求连通分量时应用
//vis 数组实现了两个功能,防止同一连通块面积重复计数和 连通块数目的重复计数
int to[4][2] = {{1,0},{-1,0},{0,1},{0,-1}};
struct node{
int x,y;
};
int area[M];
int cntlake;
int totalarea;
int sx,sy;
int check(int x,int y)
{
if(map[x][y]=='*'||vis[x][y])
return 1;
if(x<0||x>=n||y<0||y>=m)
return 1;
return 0;
}
void bfs()
{
queue<node> q;
node tmp1,tmp2;
tmp1.x = sx;
tmp1.y = sy;
q.push(tmp1);
vis[sx][sy] = 1;
//
while(!q.empty())
{
tmp1 = q.front();//为后续试探作铺垫
q.pop();
if(tmp1.x==0||tmp1.x==n-1||tmp1.y==0||tmp1.y==m-1)
{//如果到这块水域连接着海
flag = 1;
}
area[cntlake]++;
//符合要求的点才进行计数
for(int i = 0;i < 4;i++)
{
tmp2.x = tmp1.x+to[i][0];
tmp2.y = tmp1.y+to[i][1];
if(check(tmp2.x,tmp2.y))
continue;
vis[tmp2.x][tmp2.y] = 1;
q.push(tmp2);
}
}
}
int main()
{
freopen("map.txt","r",stdin);
while(scanf("%d%d%d",&n,&m,&k)!=EOF)
{
totalarea= 0;
memset(vis,0,sizeof(vis));
memset(area,0,sizeof(area));
memset(map,'\0',sizeof(map));
for(int i = 0;i < n;i++)
scanf("%s",&map[i]);
cntlake= 0;
for(int i =0; i <n;i++)
for(int j = 0;j < m;j++)
if(map[i][j]=='.'&&!vis[i][j])
{
flag = 0;
sx = i;sy = j; cnt++;
bfs();
if(flag){
area[cntlake]=0;
continue;
}
cntlake++;
}
sort(area,area+cntlake);
for(int i = 0; i < cntlake-k;i++)
totalarea+=area[i];
cout<<totalarea<<endl;
}
}