思维题 连通块dfs

Pavel loves grid mazes. A grid maze is an n × m rectangle maze where each cell is either empty, or is a wall. You can go from one cell to another only if both cells are empty and have a common side.

Pavel drew a grid maze with all empty cells forming a connected area. That is, you can go from any empty cell to any other one. Pavel doesn't like it when his maze has too little walls. He wants to turn exactly k empty cells into walls so that all the remaining cells still formed a connected area. Help him.

Input

The first line contains three integers n, m, k (1 ≤ n, m ≤ 500, 0 ≤ k < s), where n and m are the maze's height and width, correspondingly, k is the number of walls Pavel wants to add and letter s represents the number of empty cells in the original maze.

Each of the next n lines contains m characters. They describe the original maze. If a character on a line equals ".", then the corresponding cell is empty and if the character equals "#", then the cell is a wall.

Output

Print n lines containing m characters each: the new maze that fits Pavel's requirements. Mark the empty cells that you transformed into walls as "X", the other cells must be left without changes (that is, "." and "#").

It is guaranteed that a solution exists. If there are multiple solutions you can output any of them.

Examples
Input

3 4 2
#..#
..#.
#...

Output

#.X#
X.#.
#...

Input

5 4 5
#...
#.#.
.#..
...#
.#.#

Output

#XXX
#X#.
X#..
...#
.#.#

题目大致意思:就是已知一个连通块,加k个障碍,使他还是个连通块,思路就是从dfs的末端开始加障碍,因为它相对连通性较差。

#include<iostream>
using	namespace std;
int n,m,k;
const	int N=510;
char a[N][N];
int	st[N][N];
int dx[4]={0,1,0,-1},dy[4]={1,0,-1,0};
void dfs(int x,int y)
{
	for(int i=0;i<4;i++)
	{
		int tx,ty;
		 tx=x+dx[i];
		 ty=y+dy[i];
		if(tx<0||ty<0||tx>=n||ty>=m||a[tx][ty]=='#')	continue;
		if(!st[tx][ty])
		{
			st[tx][ty]=1;
			dfs(tx,ty);
		}
	}
	if(k)
	{
		k--;
		st[x][y]=2;
	}
}
int main()
{
	cin>>n>>m>>k;
	for(int i=0;i<n;i++)
	scanf("%s",a[i]);
	for(int i=0;i<n;i++)
	for(int j=0;j<m;j++)
	{
		if(!st[i][j]&&a[i][j]=='.')
		dfs(i,j);
	}
	for(int i=0;i<n;i++)
	{
	for(int j=0;j<m;j++)
	if(st[i][j]==2)
	cout<<'X';
	else
	cout<<a[i][j];
	cout<<endl;	
		
	}
}
发布了215 篇原创文章 · 获赞 9 · 访问量 3541

猜你喜欢

转载自blog.csdn.net/qq_45961321/article/details/105211077
今日推荐