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.

Examples
input
3 4 2
#..#
..#.
#...
output
#.X#
X.#.
#...
input
5 4 5
#...
#.#.
.#..
...#
.#.#
output
#XXX
#X#.
X#..
...#
.#.#
#include <iostream>
#include <cstring>
#include <queue>

using namespace std;

struct node
{
    int x;
    int y;
}head,tail;

int n,m,k;
int tx,ty,total,cnt;
char s[501][501];
bool vis[2][501][501];
int step[4][2]={{0,1},{0,-1},{1,0},{-1,0}};

void bfs()
{
    queue<node>q;
    head.x=tx;
    head.y=ty;
    cnt=0;
    q.push(head);

    while(!q.empty())
    {
        head=q.front();
        q.pop();

        if(!vis[1][head.x][head.y])
        {
            cnt++;
            vis[1][head.x][head.y]=1;
        }

        if(total-cnt==k)    return;

        for(int i=0;i<4;i++)
        {
           tail.x=head.x+step[i][0];
           tail.y=head.y+step[i][1];
           if(tail.x>=1&&tail.x<=n&&tail.y>=1&&tail.y<=m&&!vis[0][tail.x][tail.y]&&s[tail.x][tail.y]=='.') 
           {
               vis[0][tail.x][tail.y]=1;
               q.push(tail);
           }
        }
    }
}

int main()
{
    while(cin>>n>>m>>k)
    {
        total=0;
        memset(vis,0,sizeof(vis));
        for(int i=1;i<=n;i++)
        {
            for(int j=1;j<=m;j++)
            {
                cin>>s[i][j];
                if(s[i][j]=='.')    tx=i,ty=j,total++;
            }
        }

        bfs();
        for(int i=1;i<=n;i++)
        {
            for(int j=1;j<=m;j++)
            {
                if(s[i][j]=='#')    cout<<'#';
                else    cout<<(vis[1][i][j] ? '.':'X');
            }
            cout<<endl;
        }
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值