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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

【Codeforces - 378C】Maze(dfs,思维)

發布時間:2023/12/10 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【Codeforces - 378C】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#.. ...# .#.#

題目大意:

給一個n*m的矩陣,'#'代表墻,'.'代表通路,給一個k,代表需要你將矩陣中k個通路改為X,但是要保證剩下的點依然聯通,然后輸出改變后的矩陣。

解題報告:

? ? ?搜索。還有一種思路去搜索,那就是 設有s個 ' . ' ,于是只搜s-k個點,然后就停止,最后把剩下的沒搜的都變成 '?X ' 就好了。

AC代碼1:(46ms)

#include<bits/stdc++.h>using namespace std; int n,m,K; char maze[550][550]; int vis[550][550]; int nx[4] = {0,1,0,-1}; int ny[4] = {1,0,-1,0}; void dfs(int x, int y) {int tx,ty;for(int k = 0; k<4; k++) {tx = x+nx[k];ty = y+ny[k];if(tx <1 || tx > n || ty < 1 || ty > m) continue;if(maze[tx][ty] == '#' || vis[tx][ty]!=0) continue;vis[tx][ty] = 1;dfs(tx,ty);}if(K>0) {K--;vis[x][y]=666;} } int main() {cin>>n>>m>>K;for(int i = 1; i<=n; i++) {scanf("%s",maze[i]+1);}for(int i = 1; i<=n; i++) {for(int j = 1; j<=m; j++) {if(maze[i][j] == '.' && K > 0) dfs(i,j);}}for(int i = 1; i<=n; i++) {for(int j = 1; j<=m; j++) {if(vis[i][j]!=666)printf("%c",maze[i][j]);elseprintf("X");}printf("\n");}return 0;}

WA代碼2:(WA3了)

#include<bits/stdc++.h>using namespace std; int n,m,K; char maze[550][550]; int vis[550][550]; int nx[4] = {0,1,0,-1}; int ny[4] = {1,0,-1,0}; void dfs(int x, int y) {int tx,ty;for(int k = 0; k<4; k++) {tx = x+nx[k];ty = y+ny[k];if(tx <1 || tx > n || ty < 1 || ty > m) continue;if(maze[tx][ty] == '#' || vis[tx][ty]==1) continue;vis[tx][ty] = 1;dfs(tx,ty);}if(K>0) {K--;vis[x][y]=666;} } int main() {cin>>n>>m>>K;for(int i = 1; i<=n; i++) {scanf("%s",maze[i]+1);}for(int i = 1; i<=n; i++) {for(int j = 1; j<=m; j++) {if(maze[i][j] == '.' && K > 0) dfs(i,j);}}for(int i = 1; i<=n; i++) {for(int j = 1; j<=m; j++) {if(vis[i][j]!=666)printf("%c",maze[i][j]);elseprintf("X");}printf("\n");}return 0;}

?AC代碼3:(31ms)

#include<bits/stdc++.h>using namespace std; int n,m,K; char maze[550][550]; int vis[550][550]; int nx[4] = {0,1,0,-1}; int ny[4] = {1,0,-1,0}; void dfs(int x, int y) {int tx,ty;for(int k = 0; k<4; k++) {tx = x+nx[k];ty = y+ny[k];if(tx <1 || tx > n || ty < 1 || ty > m) continue;if(maze[tx][ty] == '#' || vis[tx][ty]==1) continue;vis[tx][ty] = 1;dfs(tx,ty);}if(K>0) {K--;maze[x][y] = 'X';} } int main() {cin>>n>>m>>K;for(int i = 1; i<=n; i++) {scanf("%s",maze[i]+1);}for(int i = 1; i<=n; i++) {for(int j = 1; j<=m; j++) {if(maze[i][j] == '.' && K > 0) dfs(i,j);}}for(int i = 1; i<=n; i++) {printf("%s",maze[i]+1);printf("\n");}return 0;}

?

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

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

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