日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

17-比赛2 C - Maze (dfs)

發布時間:2024/7/19 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 17-比赛2 C - Maze (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?nand?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 個 X 且保持所有的 '.' 保持貫通
====================================================================================================================================================
怎么樣才能使插入的 X 沒有阻斷路的連通,,想一想DFS,不撞南墻不回頭的理論,只要沿著一個點一路走到底,直到不能走為止,那么這個末端放上X一定不會阻斷其它'.'的連貫
如果所有末端 插入完畢之后,還有X沒有放入,那么末端之后緊挨著的點就變成了末端,根據DFS走到末端后會原路返回,那么剩下的X跟著原路返回時插入就行了。 ====================================================================================================================================================
代碼:
1 #include<bits/stdc++.h> 2 using namespace std; 3 char Map[510][510]; 4 bool book[510][510]; 5 int n,m,k; 6 void dfs(int x,int y) 7 { 8 if(x<0||x>=n||y<0||y>=m) return; 9 if(Map[x][y]!='.'||book[x][y]==1) return ; 10 book[x][y]=1; 11 for(int i=1;i<=4;i++) 12 { //四個方向 13 if(i==1) dfs(x+1,y); 14 if(i==2) dfs(x-1,y); 15 if(i==3) dfs(x,y+1); 16 if(i==4) dfs(x,y-1); 17 } 18 //當遍歷到底了之后,即循環了四次無法繼續走下去時 19 if(k!=0) 20 Map[x][y]='X',k--; 21 } 22 int main() 23 { 24 scanf("%d%d%d",&n,&m,&k); 25 for(int i=0;i<n;++i) 26 scanf("%s",Map[i]); 27 28 for(int i=0;i<n;++i) 29 { 30 for(int j=0;j<m;j++) 31 { 32 dfs(i,j); 33 if(k==0) break; 34 } 35 if(k==0) break; 36 } 37 for(int i=0;i<n;i++) 38 puts(Map[i]); 39 return 0; 40 }

轉載于:https://www.cnblogs.com/darkboy/p/9415934.html

總結

以上是生活随笔為你收集整理的17-比赛2 C - Maze (dfs)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。