UVA 784 Maze Exploration

22 篇文章 0 订阅
10 篇文章 0 订阅

题目如下:

Maze Exploration 

A maze of rectangular rooms is represented on a twodimensional grid as illustrated in figure 1a. Each point of thegrid is represented by a character. The points of room walls aremarked by the same character which can be any printable characterdifferent than `*', `_' and space. In figure 1 this character is`X'. All the other points of the grid are markedby spaces.

               XXXXXXXXXXXXXXXXXXXXX             XXXXXXXXXXXXXXXXXXXXX
               X   X   X   X   X   X             X###X###X###X   X   X
               X           X   X   X             X###########X   X   X
               X   X   X   X   X   X             X###X###X###X   X   X
               XXXXXX XXX XXXXXXXXXX             XXXXXX#XXX#XXXXXXXXXX
               X   X   X   X   X   X             X   X###X###X###X###X
               X   X     *         X             X   X###############X
               X   X   X   X   X   X             X   X###X###X###X###X
               XXXXXXXXXXXXXXXXXXXXX             XXXXXXXXXXXXXXXXXXXXX
a) Initial maze                    b) Painted maze

Figure 1. Mazes of rectangular rooms

All rooms of the maze are equal sized with all walls 3points wide and 1 point thick as illustrated in figure 2. Inaddition, a wall is shared on its full length by the separatedrooms. The rooms can communicate through doors, which arepositioned in the middle of walls. There are no outdoor doors.

                     door
                       |
                     XX XX
                     X . X   measured from within the room
               door - ...--  walls are 3 points wide
                     X . X__
                     XXXXX  |
                       |___  walls are one point thick
Figure 2. A room with 3 doors

Your problem is to paint all rooms of a maze which can bevisited starting from a given room, called the `start room' whichis marked by a star (`*') positioned in the middle of theroom. A room can be visited from another room if there is a dooron the wall which separates the rooms. By convention, a room ispainted if its entire surface, including the doors, is markedby the character `#' as shown in figure 1b.

Input 

The program input is a text file structured as follows:
1.
The first line contains a positive integer which shows thenumber of mazes to be painted.
2.
The rest of the file contains the mazes.

The lines of the input file can be of different length. Thetext which represents a maze is terminated by a separation linefull of underscores (`_'). There are at most 30 lines andat most 80 characters in a line for each maze

The program reads the mazes from the input file, paints themand writes the painted mazes on the standard output.

Output 

The output text of a painted maze has the same format as thatwhich has been read for that maze, including the separationlines. The example below illustrates a simple input whichcontains a single maze and the corresponding output.

Sample Input 

2
XXXXXXXXX
X   X   X
X *     X
X   X   X
XXXXXXXXX
X   X
X   X
X   X
XXXXX
_____
XXXXX
X   X
X * X
X   X
XXXXX
_____

Sample Output 

XXXXXXXXX
X###X###X
X#######X
X###X###X
XXXXXXXXX
X   X
X   X
X   X
XXXXX
_____
XXXXX
X###X
X###X
X###X
XXXXX
_____
DFS题,我用两种思路都写了。一种是利用题目的特点直接模拟,一种是DFS,两种思路的代码都给出来。中间RTE了无数次TAT,原因就是把x和y搞反了,一直没发现。找出起始房间然后直接DFS即可,题目挺简单的。

AC的代码如下:

直接模拟版

#include 
   
   
    
    
using namespace std;
char graph[50][100];
int vis[50][100];
int m;
int n;
void solve(int x,int y)
{
    if(x<1||y<1||y>=m)
        return;
    if(vis[y][x])
        return;
    vis[y][x]=1;
    for(int i=y-1; i<=y+1; i++)
        for(int j=x-1; j<=x+1; j++)
            graph[i][j]='#';
    if(x>=2&&graph[y][x-2]==' ')
    {
        graph[y][x-2]='#';
        solve(x-4,y);
    }
    if(graph[y][x+2]==' ')
    {
        graph[y][x+2]='#';
        solve(x+4,y);
    }
    if(y>=2&&graph[y-2][x]==' ')
    {
        graph[y-2][x]='#';
        solve(x,y-4);
    }
    if(y+2<=m&&graph[y+2][x]==' ')
    {
        graph[y+2][x]='#';
        solve(x,y+4);
    }
}
int main()
{
    cin>>n;
    getchar();
    while(n--)
    {
        memset(graph,' ',sizeof graph);
        memset(vis,0,sizeof vis);
        m=0;
        int markx=0,marky=0;
        while(gets(graph[m]))
        {
            if(graph[m][0]!='_')
            {
                for(int i=0; i
    
    
   
   

DFS版

#include 
    
    
     
     

using namespace std;
char graph[50][100];
int vis[50][100];
int m;
int n;
int dx[4]= {0,1,0,-1};
int dy[4]= {1,0,-1,0};
void dfs(int x,int y)
{
    if(x<0||y<0||y>=m||vis[y][x]||(graph[y][x]!=' '&&graph[y][x]!='*'))
        return;
    vis[y][x]=1;
    graph[y][x]='#';
    for(int i=0; i<4; i++)
    {

        dfs(x+dx[i],y+dy[i]);
    }

}
int main()
{
    cin>>n;
    getchar();
    while(n--)
    {
        memset(graph,' ',sizeof graph);
        memset(vis,0,sizeof vis);
        m=0;
        int markx=0,marky=0;
        while(gets(graph[m]))
        {
            if(graph[m][0]!='_')
            {
                for(int i=0; i
     
     
    
    


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值