程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> CodeForces 377 A. Maze

CodeForces 377 A. Maze

編輯:C++入門知識


DFS找末端的空地變成牆。。。。。。

A. Maze time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output

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.

Sample test(s) input
3 4 2
#..#
..#.
#...
output
#.X#
X.#.
#...
input
5 4 5
#...
#.#.
.#..
...#
.#.#
output
#XXX
#X#.
X#..
...#
.#.#

#include 
#include 
#include 

using namespace std;

char mp[512][512];
bool vis[512][512];

int n,m,k;

void dfs(int x,int y)
{
    if(x<0||x>=n||y<0||y>=m) return ;
    if(mp[x][y]!='.') return ;
    if(vis[x][y]) return ;
    vis[x][y]=true;
    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);
    for(int i=0;i



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved