zoukankan      html  css  js  c++  java
  • Finding Nemo 分类: POJ 2015-07-11 10:11 10人阅读 评论(0) 收藏

    Finding Nemo
    Time Limit: 2000MS   Memory Limit: 30000K
    Total Submissions: 8117   Accepted: 1883

    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 9
    1 1 1 3
    2 1 1 3
    3 1 1 3
    4 1 1 3
    1 1 0 3
    1 2 0 3
    1 3 0 3
    1 4 0 3
    2 1 1
    2 2 1
    2 3 1
    3 1 1
    3 2 1
    3 3 1
    1 2 0
    3 3 0
    4 3 1
    1.5 1.5
    4 0
    1 1 0 1
    1 1 1 1
    2 1 1 1
    1 2 0 1
    1.5 1.7
    -1 -1

    Sample Output

    5
    -1
    
    #include <iostream>
    #include <cstdlib>
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <string>
    #include <queue>
    #include <stack>
    #include <map>
    #include <algorithm>
    #define INF 0x3f3f3f3f
    
    using namespace std;
    int Map[210][210][2];
    bool vis[210][210];
    int n,m,Max;
    double fx,fy;
    int Fx,Fy;
    struct node
    {
        int x;
        int y;
        int ans;
    };
    void BFS()
    {
        queue<node>Q;
        node a,b;
        a.x=Fx;
        a.y=Fy;
        a.ans=0;
        Max=INF;
        memset(vis,false,sizeof(vis));
        vis[Fx][Fy]=true;
        Q.push(a);
        while(!Q.empty())
        {
            a=Q.front();
            Q.pop();
            if(a.x==0||a.x>199||a.y==0||a.y>199)
            {
                if(a.ans<Max)
                {
                    Max=a.ans;
                }
                continue;
            }
            if(a.ans>Max)剪枝
            {
                continue;
            }
            b.x=a.x+1;
            b.y=a.y;
            if(!vis[b.x][b.y]&&Map[a.x][a.y][1]!=1)//由于用左边或下边的点表示该点的状态,所以对于向右或向上判断Map[a.x][a.y][]的状态、
            {                                                          //对于向左或向下判断Map[b.x][b.y]的状态
                vis[b.x][b.y]=true;
                if(Map[a.x][a.y][1]==2)
                {
                    b.ans=a.ans+1;
                }
                else
                {
                    b.ans=a.ans;
                }
                Q.push(b);
            }
            b.x=a.x-1;
            b.y=a.y;
            if(!vis[b.x][b.y]&&Map[b.x][b.y][1]!=1)
            {
                vis[b.x][b.y]=true;
                if(Map[b.x][b.y][1]==2)
                {
                    b.ans=a.ans+1;
                }
                else
                {
                    b.ans=a.ans;
                }
                Q.push(b);
            }
            b.x=a.x;
            b.y=a.y+1;
            if(!vis[b.x][b.y]&&Map[a.x][a.y][0]!=1)
            {
                vis[b.x][b.y]=true;
                if(Map[a.x][a.y][0]==2)
                {
                    b.ans=a.ans+1;
                }
                else
                {
                    b.ans=a.ans;
                }
                Q.push(b);
            }
            b.x=a.x;
            b.y=a.y-1;
            if(!vis[b.x][b.y]&&Map[b.x][b.y][0]!=1)
            {
                vis[b.x][b.y]=true;
                if(Map[b.x][b.y][0]==2)
                {
                    b.ans=a.ans+1;
                }
                else
                {
                    b.ans=a.ans;
                }
                Q.push(b);
            }
        }
        if(Max==INF)
        {
            cout<<"-1"<<endl;
        }
        else
        printf("%d
    ",Max);
    }
    int main()
    {
        int x,y,t,d;
        while(scanf("%d %d",&n,&m))
        {
            if(n==-1&&m==-1)
            {
                break;
            }
            memset(Map,0,sizeof(Map));
            while(n--)
            {
                scanf("%d %d %d %d",&x,&y,&d,&t);
                if(d)
                {
                    for(int i=0; i<t; i++)//用左边或下边的点表示该点的状态
                    {
                        Map[x-1][y+i][1]=1;
                    }
                }
                else
                {
                    for(int i=0; i<t; i++)
                    {
                        Map[x+i][y-1][0]=1;
                    }
                }
            }
            while(m--)
            {
                scanf("%d %d %d",&x,&y,&d);
                if(d)
                {
                    Map[x-1][y][1]=2;
                }
                else
                {
                    Map[x][y-1][0]=2;
                }
            }
            scanf("%lf %lf",&fx,&fy);
            Fx=int(fx);
            Fy=int(fy);
            if(Fx==0||Fy==0||Fx>199||Fy>199)
            {
                printf("0
    ");
                continue;
            }
            BFS();
        }
        return 0;
    }
    


    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    sudo 临时切换用户和环境变量的传递
    递归复杂度算法如何计算草稿
    Mac下设计全局环境变量
    Golang http 超时设置方法
    go get github竟然区分大小写
    通过远程终端后台运行程序
    打开华为手机的logcat
    Golang的锁和线程安全的Map
    PL/SQL语句块基本语法(ORACLE存储过程,函数,包,游标) (转)
    C# 文件操作把结果保存到文件里
  • 原文地址:https://www.cnblogs.com/juechen/p/4721966.html
Copyright © 2011-2022 走看看