zoukankan      html  css  js  c++  java
  • 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 nmk (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
    Copy
    3 4 2
    #..#
    ..#.
    #...
    output
    Copy
    #.X#
    X.#.
    #...
    input
    Copy
    5 4 5
    #...
    #.#.
    .#..
    ...#
    .#.#
    output
    Copy
    #XXX
    #X#.
    X#..
    ...#
    .#.#

    刚开始忘了记录visited过的点一直出错。

    #include <iostream>
    #include <vector>
    #include <algorithm>
    #include <string>
    #include <set>
    #include <queue>
    #include <map>
    #include <sstream>
    #include <cstdio>
    #include <cstring>
    #include <numeric>
    #include <cmath>
    #include <unordered_set>
    #include <unordered_map>
    #define ll long long
    using namespace std;
    int dir[4][2] = { {0,1},{0,-1},{-1,0},{1,0} };
    vector<string> maze;
    int n, m, tode, all=0;
    bool v[501][501];
    void dfs(int x,int y)
    {    
        if (all < 0)
            return;
        if (v[x][y] == true)
            return;
        v[x][y] = true;
        if (maze[x][y] == '.')
            all--;
        if (all < tode)
            maze[x][y] = 'X';
        for (int i = 0; i < 4; i++)
        {
            int xn = x + dir[i][0], yn = y + dir[i][1];
            if (xn >= 0 && yn >= 0 && xn < n && yn < m && maze[xn][yn] != 'X' && maze[xn][yn] != '#')
            {
                dfs(xn, yn);
            }
        }
    }
    int main()
    {
        cin >> n>> m>> tode;
        maze.resize(n);
        int startx, starty,flag =0;
        for (int i = 0; i < n; i++)
        {
            cin >> maze[i];
            for (int j = 0; j < m; j++)
            {
                if (maze[i][j] == '.')
                {
                    all++;
                    startx = i;
                    starty = j;
                    flag = 1;
                }
            }
        }
        dfs(startx, starty);
        for (int i = 0; i < n; i++)
            cout << maze[i]<<endl;
        //system("pause");
        return 0;
    }
  • 相关阅读:
    隐藏QQ全部图标,隐藏QQ全部信息
    发放腾讯微博邀请,先到先得、
    关于“5005: 优化字节代码时发生未知错误。”的处理办法
    端口
    xmldocument
    MasterPage
    asp.net ajax
    mysqladmin 设置用户名初始密码报错you need the SUPER privilege for this operation
    实践SSH通道链接国外服务器访问受限网站
    转载 实践与分享:Windows 7怎么获取TrustedInstaller权限【图文教程】
  • 原文地址:https://www.cnblogs.com/dealer/p/12320844.html
Copyright © 2011-2022 走看看