POJ 1556 The Doors

计算几何+最短路

枚举线段是否相交建图,然后跑最短路

#include<cstdio>
#include<cstring>
#include<vector>
#include<cmath>
#include<queue>
#include<algorithm>
using namespace std;

const int maxn=1000+10;
const double eps=1e-8;
int n;
int totP,totL;

struct point
{
    double x;
    double y;
} p[1000];
struct Line
{
    point a;
    point b;
} line[1000];
struct Path
{
    int to;
    double val;
    Path(int t,double v)
    {
        to=t;
        val=v;
    }
};
vector<Path>G[maxn];
queue<int>Q;
bool flag[maxn];
double d[maxn];

double xmult(point p1,point p2,point p0)
{
    return (p1.x-p0.x)*(p2.y-p0.y)-(p2.x-p0.x)*(p1.y-p0.y);
}

int opposite_side(point p1,point p2,point l1,point l2)
{
    return xmult(l1,p1,l2)*xmult(l1,p2,l2)<-eps;
}

int intersect_ex(point u1,point u2,point v1,point v2)
{
    return opposite_side(u1,u2,v1,v2)&&opposite_side(v1,v2,u1,u2);
}

void read()
{
    totP=0,totL=0;
    p[totP].x=0,p[totP++].y=5;
    for(int i=1; i<=n; i++)
    {
        double x,a,b,c,d;
        scanf("%lf%lf%lf%lf%lf",&x,&a,&b,&c,&d);
        p[totP+0].x=x,p[totP+0].y=0;
        p[totP+1].x=x,p[totP+1].y=a;
        p[totP+2].x=x,p[totP+2].y=b;
        p[totP+3].x=x,p[totP+3].y=c;
        p[totP+4].x=x,p[totP+4].y=d;
        p[totP+5].x=x,p[totP+5].y=10;

        line[totL].a=p[totP+0];
        line[totL].b=p[totP+1];
        totL++;
        line[totL].a=p[totP+2];
        line[totL].b=p[totP+3];
        totL++;
        line[totL].a=p[totP+4];
        line[totL].b=p[totP+5];
        totL++;

        totP=totP+6;
    }
    p[totP].x=10,p[totP++].y=5;
}

double dis(point a,point b)
{
    return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}

void SPFA()
{
    memset(flag,0,sizeof flag);
    for(int i=0; i<=1000; i++) d[i]=9999999;
    while(!Q.empty()) Q.pop();
    Q.push(0);
    flag[0]=1;
    d[0]=0;
    while(!Q.empty())
    {
        int head=Q.front();
        Q.pop();
        for(int i=0; i<G[head].size(); i++)
        {
            Path path=G[head][i];
            if(d[head]+path.val<d[path.to])
            {
                d[path.to]=d[head]+path.val;
                if(!flag[path.to])
                {
                    flag[path.to]=1;
                    Q.push(path.to);
                }
            }
        }
    }
}

int main()
{
    while(~scanf("%d",&n))
    {
        if(n==-1) break;
        read();

        for(int i=0; i<=1000; i++) G[i].clear();

        for(int i=0; i<totP; i++)
        {
            for(int j=i+1; j<totP; j++)
            {
                if(abs(p[i].x-p[j].x)<eps) continue;
                bool fail=0;
                for(int k=0; k<totL; k++)
                    if(intersect_ex(p[i],p[j],line[k].a,line[k].b))
                        fail=1;
                if(!fail)
                {
                    double len=dis(p[i],p[j]);
                    Path path(j,len);
                    G[i].push_back(path);
                }
            }
        }
        SPFA();

        printf("%.2f\n",d[totP-1]);
    }
    return 0;
}
时间: 2024-10-22 10:37:27

POJ 1556 The Doors的相关文章

Poj 1556 The Doors 计算几何+最短路

其实本题非常的无脑,无脑拍完1A,写到blog里只因为TM无脑拍也拍了很久啊= = #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <climits> #include <string> #include <iostream> #include <map> #include <cstdl

POJ 1556 - The Doors 线段相交不含端点

POJ 1556 - The Doors题意:    在 10x10 的空间里有很多垂直的墙,不能穿墙,问你从(0,5) 到 (10,5)的最短距离是多少.    分析:        要么直达,要么一定是墙的边缘点之间以及起始点.终点的连线.        所以先枚举墙上每一点到其他点的直线可达距离,就是要判定该线段是否与墙相交(不含端点).        然后最短路. 1 #include <iostream> 2 #include <cstdio> 3 #include &l

POJ 1556 The Doors 线段交 dijkstra

LINK 题意:在$10*10$的几何平面内,给出n条垂直x轴的线,且在线上开了两个口,起点为$(0, 5)$,终点为$(10, 5)$,问起点到终点不与其他线段相交的情况下的最小距离. 思路:将每个开口的两端点作为一个节点,再枚举点与点间能否直接到达(判相交),以此建图求最短路. /** @Date : 2017-07-11 16:17:31 * @FileName: POJ 1556 线段交+dijkstra 计算几何.cpp * @Platform: Windows * @Author :

POJ 1556 The Doors(线段交+最短路)

#include <iostream> #include <stdio.h> #include <string.h> #include <algorithm> #include <queue> #include <map> #include <vector> #include <set> #include <string> #include <math.h> using namespac

POJ 1556 The Doors --几何,最短路

题意: 给一个正方形,从左边界的中点走到右边界的中点,中间有一些墙,问最短的距离是多少. 解法: 将起点,终点和所有墙的接触到空地的点存下来,然后两两之间如果没有线段(墙)阻隔,就建边,最后跑一个最短路SPFA,即可得出答案. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <cmath> #include <a

简单几何(线段相交+最短路) POJ 1556 The Doors

题目传送门 题意:从(0, 5)走到(10, 5),中间有一些门,走的路是直线,问最短的距离 分析:关键是建图,可以保存所有的点,两点连通的条件是线段和中间的线段都不相交,建立有向图,然后用Dijkstra跑最短路.好题! /************************************************ * Author :Running_Time * Created Time :2015/10/24 星期六 09:48:49 * File Name :POJ_1556.cpp

POJ 1556 The Doors(简单计算几何+最短路)

●赘述题目 10*10的房间内,有竖着的一些墙(不超过18个).问从点(0,5)到(10,5)的最短路. 按照输入样例,输入的连续5个数,x,y1,y2,y3,y4,表示(x,0--y1),(x,y2--y3),(x,y4--10)是墙壁. ●题解 方法:建图(用到简单计算几何)+最短路 ○记录下每个端点. ○包含起点,终点,以及每个墙的可以走的端点,如下图: ○然后枚举点,尝试两两组合连(线段)边,若该线不会撞在墙上,即不会与墙壁线段相交,就add_adge(). 效果图如下: 如何判断呢?

poj 1556 zoj1721 BellmanFord 最短路+判断直线相交

http://poj.org/problem?id=1556 The Doors Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 6120   Accepted: 2455 Description You are to find the length of the shortest path through a chamber containing obstructing walls. The chamber will a

POJ 1556

枚举每两点的直线,看连线中是否存在线段交点,若存在,即这两点的直线不存在.建图,DIJK就可以了. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cmath> 5 #include <algorithm> 6 using namespace std; 7 8 const int Max=100; 9 const int M=3000; 10 c