poj-2049 Finding Nemo-BFS

来源:互联网 发布:海南大学网络教学系统 编辑:程序博客网 时间:2024/05/24 15:42

Description

Nemo is a naughty boy. One day he went into the deep sea all by himself. Unfortunately, he became lost and couldn't find his way home. Therefore, he sent a signal to his father, Marlin, to ask for help.
After checking the map, Marlin found that the sea is like a labyrinth with walls and doors. All the walls are parallel to the X-axis or to the Y-axis. The thickness of the walls are assumed to be zero.
All the doors are opened on the walls and have a length of 1. Marlin cannot go through a wall unless there is a door on the wall. Because going through a door is dangerous (there may be some virulent medusas near the doors), Marlin wants to go through as few doors as he could to find Nemo.
Figure-1 shows an example of the labyrinth and the path Marlin went through to find Nemo.

We assume Marlin's initial position is at (0, 0). Given the position of Nemo and the configuration of walls and doors, please write a program to calculate the minimum number of doors Marlin has to go through in order to reach Nemo.

Input

The input consists of several test cases. Each test case is started by two non-negative integers M and N. M represents the number of walls in the labyrinth and N represents the number of doors.
Then follow M lines, each containing four integers that describe a wall in the following format:
x y d t
(x, y) indicates the lower-left point of the wall, d is the direction of the wall -- 0 means it's parallel to the X-axis and 1 means that it's parallel to the Y-axis, and t gives the length of the wall.
The coordinates of two ends of any wall will be in the range of [1,199].
Then there are N lines that give the description of the doors:
x y d
x, y, d have the same meaning as the walls. As the doors have fixed length of 1, t is omitted.
The last line of each case contains two positive float numbers:
f1 f2
(f1, f2) gives the position of Nemo. And it will not lie within any wall or door.
A test case of M = -1 and N = -1 indicates the end of input, and should not be processed.

Output

For each test case, in a separate line, please output the minimum number of doors Marlin has to go through in order to rescue his son. If he can't reach Nemo, output -1.

Sample Input

8 91 1 1 32 1 1 33 1 1 34 1 1 31 1 0 31 2 0 31 3 0 31 4 0 32 1 12 2 12 3 13 1 13 2 13 3 11 2 03 3 04 3 11.5 1.54 01 1 0 11 1 1 12 1 1 11 2 0 11.5 1.7-1 -1

Sample Output

5-1

   题意:nemo需要从图中走出来找到marlin,找出最少需要经过多少个门才能找到marlin。需要注意的是地图从中x和y坐标从[1,199]所以地图不可能在0,200+坐标处有门或有墙,即nemo走出地图后不需要经过任何门可以直接到达(0,0)。还需要注意地图里可能存在没有门也没有墙的情况,这样就可以直接走不需要累加门的数量。最后要注意的是nemo的位置不一定在图里面。如果在图外面那么可以直接以穿过0个门到达终点。(经过个人研究nemo的起始位置可能为负坐标,对于用BFS解题并且RE的同学需要注意)

#include <iostream>#include <stdio.h>#include <string.h>#include <stdlib.h>#define INF 0x3f3f3f3fusing namespace std;struct node{    int w,a,s,d;}map[410][410];struct no{    int x,y;    int step;}que[50000],now,next;int vis[410][410];int minx,miny,maxx,maxy;int sx,sy;void BFS(){    int i;    memset(vis,0,sizeof(vis));    next.x=sx;    next.y=sy;    next.step=0;    vis[sx][sy]=1;    int s=0,e=0,ans=INF;    que[e].x=sx;    que[e].y=sy;    que[e++].step=0;    while(s<e)    {        now=que[s++];        for (i=1;i<=4;i++)        {            int flag=0;            if(i==1)                if(map[now.x][now.y].w!=1)                {                    next.x=now.x-1;                    next.y=now.y;                    if(map[now.x][now.y].w==2)                        next.step=now.step+1;                    else next.step=now.step;                    flag=1;                }            if(i==2)               if(map[now.x][now.y].s!=1)                {                    next.x=now.x+1;                    next.y=now.y;                    if(map[now.x][now.y].s==2)                        next.step=now.step+1;                    else next.step=now.step;                    flag=1;                 }            if(i==3)                 if(map[now.x][now.y].a!=1)                {                    next.x=now.x;                    next.y=now.y-1;                    if(map[now.x][now.y].a==2)                        next.step=now.step+1;                    else next.step=now.step;                    flag=1;                 }            if(i==4)                if(map[now.x][now.y].d!=1)                {                    next.x=now.x;                    next.y=now.y+1;                    if(map[now.x][now.y].d==2)                        next.step=now.step+1;                    else next.step=now.step;                    flag=1;                }             if(next.x<=0||next.x>=200||next.y<=0||next.y>=200)             {                 if(next.step<ans)                ans=next.step;                continue;             }             if(!vis[next.x][next.y]&&flag)             {                 vis[next.x][next.y]=1;                 que[e++]=next;             }        }    }    if(ans==INF) printf("-1\n");    else    printf("%d\n",ans);}int main(){    int n,m;    int x,y,w,d;    double x1,y1;    int i,j;    while (scanf("%d%d",&n,&m),n!=-1||m!=-1)    {        //minx=INF,miny=INF,maxx=0,maxy=0;        memset(map,0,sizeof(map));        while (n--)        {            scanf("%d%d%d%d",&x,&y,&w,&d);            if(w)                for (i=0;i<d;i++)                {                    map[x][y+i].w=1;                    map[x-1][y+i].s=1;                }            else                for(i=0;i<d;i++)                {                    map[x+i][y].a=1;                    map[x+i][y-1].d=1;                }        }        while(m--)        {            scanf("%d%d%d",&x,&y,&w);            if(w)            {                map[x][y].w=2;                map[x-1][y].s=2;            }            else            {                map[x][y].a=2;                map[x][y-1].d=2;            }        }       /*for (i=0;i<=4;i++)        {            for (j=0;j<=4;j++)            {                printf("w%da%ds%dd%d   ",map[i][j].w,map[i][j].a,map[i][j].s,map[i][j].d);            }            printf("\n");        }*/        scanf("%lf%lf",&x1,&y1);        sx=x1;        sy=y1;        if(sx>=1&&sy<=199&&sy>=1&&sy<=199)        BFS();        else            printf("0\n");    }    return 0;}


0 0
原创粉丝点击