Maze

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.

Example
Input
3 4 2
#..#
..#.
#...
Output
#.X#
X.#.
#...
Input
5 4 5
#...
#.#.
.#..
...#
.#.#
Output
#XXX
#X#.
X#..
...#
.#.#

题意:

“.”代表空地,“#”代表墙,初始时空地时一个连通块,将k个空地用墙代替,使空地任然还是一个连通块

打印变化后的地图;

思路:

空地形成一颗树,将树的叶子换成墙

代码:

#include<stdio.h>
#include<string.h>
using namespace std;
char mp[505][505];
int vis[505][505];
int n,m,k;
int Is(int x,int y){
	if(x<0||y<0||x>=n||y>=m) return 0;
	if(mp[x][y]!='.'||vis[x][y]) return 0;
	return 1;
}
void Dfs(int x,int y){
	if(Is(x,y)){
		vis[x][y]=1;
		Dfs(x+1,y);
		Dfs(x-1,y);
		Dfs(x,y+1);
		Dfs(x,y-1);
		if(k) mp[x][y]='X',k--;
	} 
}
int main(){
	scanf("%d%d%d",&n,&m,&k);
	int i,j;
	for(i=0;i<n;i++)
	scanf("%s",mp[i]);
	for(i=0;i<n&&k;i++){
		for(j=0;j<m&&k;j++){
			if(mp[i][j]=='.') Dfs(i,j);
		}
	}
	for(i=0;i<n;i++)
	printf("%s\n",mp[i]);
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值