CSU 1562 Fun House(直线搜索)

来源:互联网 发布:apache maven 编辑:程序博客网 时间:2024/06/05 03:36

1562: Fun House

        Time Limit:1 Sec     Memory Limit: 128 Mb     Submitted:498     Solved:176    

Description

American Carnival Makers Inc. (ACM) has a long history of designing rides and attractions. One of their more popular attractions is a fun house that includes a room of mirrors. Their trademark is to set up the room so that when looking forward from the entry door, the exit door appears to be directly ahead. However, the room has double-sided mirrors placed throughout at 45 degree angles. So, the exit door can be on any of the walls of the room. The set designer always places the entry and mirrors, but can never seem to be bothered to place the exit door. One of your jobs as part of the construction crew is to determine the placement of the exit door for the room given an original design.

The final diagram for a sample room is given below. The asterisk (*) marks the entry way, lower case x's mark the walls, the mirrors are given by the forward and backward slash characters (/ and \), open spaces with no visual obstructions are marked by periods (.), and the desired placement of the exit is marked with an ampersand (&). In the input diagram, there is an 'x' in place of the '&', since the exit has not yet been located. You need to alter the input diagram by replacing the proper 'x' with an '&' to identify the exit. Note that entrances and exits can appear on any of the walls (although never a corner), and that it is physically impossible for the exit to be the same as the entrance. (You don't need to understand why this is so, although it may be fun to think about.)

xxxxxxxxxxx
x../..\...x
x..../....x
*../......x
x.........x
xxxxxx&xxxx

Input

Each room will be preceded by two integers, W and L, where 5 ≤ W ≤ 20 is the width of the room including the border walls and 5 ≤ L ≤ 20 is the length of the room including the border walls. Following the specification of W and L are L additional lines containing the room diagram, with each line having W characters from the alphabet: { * , x , . , / , \ }. The perimeter will always be comprised of walls, except for one asterisk (*) which marks the entrance; the exit is not (yet) marked. A line with two zeros indicates the end of input data.

Output

For each test case, the first line will contain the word, HOUSE, followed by a space and then an integer that identifies the given fun house sequentially. Following that should be a room diagram which includes the proper placement of the exit door, as marked by an ampersand (&).

Sample Input

11 6xxxxxxxxxxxx../..\...xx..../....x*../......xx.........xxxxxxxxxxxx5 5xxxxx*...xx...xx...xxxxxx5 5xxxxxx./\x*./.xx..\xxxxxx6 6xxx*xxx/...xx....xx/./.xx\./.xxxxxxx10 10xxxxxxxxxxx.../\...xx........xx........xx.../\..\x*...\/../xx........xx........xx...\/...xxxxxxxxxxx0 0

Sample Output

HOUSE 1xxxxxxxxxxxx../..\...xx..../....x*../......xx.........xxxxxxx&xxxxHOUSE 2xxxxx*...&x...xx...xxxxxxHOUSE 3xxxxxx./\x*./.xx..\&xxxxxHOUSE 4xxx*xxx/...xx....xx/./.&x\./.xxxxxxxHOUSE 5xxxxxxxxxxx.../\...xx........xx........x&.../\..\x*...\/../xx........xx........xx...\/...xxxxxxxxxxx

Hint

In both Java and C++ the backslash character (\) has special meaning as an escape character within character and string literals. You must use the combination \\ to express a single backslash within a character or string literal within source code.


题意:

给你一个地图,一个射光点,一些镜子\ /,让你找到出射口。


POINT:

挺有意思的一题,就搜索就好了。和Fzu的猫和老鼠有点像,是被迫转弯的类型。


#include <iostream>#include <stdio.h>#include <string.h>using namespace std;#define  LL long longchar mp[33][33];int dir[4][2]={1,0,0,1,-1,0,0,-1};int flag=0;int n,m;void dfs(int x,int y,int f){    if(x==1||x==n||y==1||y==m)    {        mp[x][y]='&';        flag=1;        return;    }    int b=0;    if(mp[x][y]=='\\')        b=1;    else if(mp[x][y]=='/')        b=-1;    if(b==0)        dfs(x+dir[f][0],y+dir[f][1],f);    else if(b==1)    {        if(f==0) f=1;        else if(f==1) f=0;        else if(f==2) f=3;        else f=2;        dfs(x+dir[f][0],y+dir[f][1],f);    }    else    {        if(f==0) f=3;        else if(f==1) f=2;        else if(f==2) f=1;        else f=0;        dfs(x+dir[f][0],y+dir[f][1],f);    }           }int main(){    int k=0;    while(~scanf("%d %d",&m,&n))    {        if(n==0&&m==0) break;        for(int i=1;i<=n;i++)        {            scanf("%s",mp[i]+1);        }        int bx,by;        for(int i=1;i<=n;i++)        {            for(int j=1;j<=m;j++)            {                if(mp[i][j]=='*')                {                    bx=i;                    by=j;                    break;                }            }        }        int now;        if(bx==1) now=0;        else if(bx==n) now=2;        else if(by==1) now=1;        else now=3;        dfs(bx+dir[now][0],by+dir[now][1],now);        printf("HOUSE %d\n",++k);        for(int i=1;i<=n;i++)        {            printf("%s\n",mp[i]+1);        }            }    }



原创粉丝点击