The Doors - POJ 1556 (线段相交)

题目大意:有一个房间(左上角(0,10),右下角(10,0)),然后房间里有N面墙,每面墙上都有两个门,求出来从初始点(0,5),到达终点(10,5)的最短距离。

分析:很明显根据两点之间直线最短,所以所走的路线一定是点之间的连线,只需要判断一下这两点间知否有墙即可。

代码如下:

======================================================================================================================================

#include<math.h>
#include<algorithm>
#include<stdio.h>
using namespace std;

const int MAXN = 1007;
const double oo = 1e9+7;
const double EPS = 1e-8;

struct point
{
    double x, y, len;
    point(double x=0, double y=0, double len=0):x(x),y(y),len(len){}
    point operator - (const point &t) const{
        return point(x-t.x, y-t.y);
    }
    int operator *(const point &t) const{
        double c = x*t.y - y*t.x;
        if(c > EPS)return 1;
        if(fabs(c)<EPS)return 0;
        return -1;
    }
};
struct Wall
{
    point A, B;
    Wall(point A=0, point B=0):A(A), B(B){}
};

bool CanLine(point a, point b, Wall w[], int N)
{
    for(int i=0; i<N; i++)
    {
        if( w[i].A.x < b.x || w[i].A.x > a.x )
            continue;
        int t = (a-b)*(w[i].A-b) + (a-b)*(w[i].B-b);

        if(t == 0)
            return false;
    }

    return true;
}

int main()
{
    int M;

    while(scanf("%d", &M) != EOF && M != -1)
    {
        int i, j, nw=0, np=1;
        double x, y[10];
        Wall w[MAXN]; point p[MAXN];

        p[0] = point(0, 5, 0);
        while(M--)
        {
            scanf("%lf%lf%lf%lf%lf", &x, &y[0], &y[1], &y[2], &y[3]);

            p[np++] = point(x, y[0], oo), p[np++] = point(x, y[1], oo);
            p[np++] = point(x, y[2], oo), p[np++] = point(x, y[3], oo);
            w[nw++] = Wall(point(x,   -1), point(x, y[0]));
            w[nw++] = Wall(point(x, y[1]), point(x, y[2]));
            w[nw++] = Wall(point(x, y[3]), point(x,   11));
        }
        p[np++] = point(10, 5, oo);

        for(i=1; i<np; i++)
        for(j=0; j<i;  j++)
        {
            point t = p[i] - p[j];
            t.len = sqrt(t.x*t.x+t.y*t.y);

            if(p[i].len > t.len + p[j].len && CanLine(p[i], p[j], w, nw) == true)
                p[i].len = t.len + p[j].len;
        }

        printf("%.2f\n", p[np-1].len);
    }

    return 0;
}
时间: 2024-10-17 05:36:54

The Doors - POJ 1556 (线段相交)的相关文章

poj 1066 线段相交

链接:http://poj.org/problem?id=1066 Treasure Hunt Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5431   Accepted: 2246 Description Archeologists from the Antiquities and Curios Museum (ACM) have flown to Egypt to examine the great pyramid

poj 1410 线段相交判断

http://poj.org/problem?id=1410 Intersection Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 11329   Accepted: 2978 Description You are to write a program that has to decide whether a given line segment intersects a given rectangle. An ex

poj 1269 线段相交/平行

模板题 注意原题中说的线段其实要当成没有端点的直线.被坑了= = 1 #include <cmath> 2 #include <cstdio> 3 #include <iostream> 4 #include <cstring> 5 using namespace std; 6 7 #define eps 1e-8 8 #define PI acos(-1.0)//3.14159265358979323846 9 //判断一个数是否为0,是则返回true,否

poj 2653 线段相交

题意:一堆线段依次放在桌子上,上面的线段会压住下面的线段,求找出没被压住的线段. sol:从下向上找,如果发现上面的线段与下面的相交,说明被压住了.break掉 其实这是个n^2的算法,但是题目已经说了没被压住的线段不超过1000个,所以不会爆 1 #include<math.h> 2 #include <stdio.h> 3 #include <string.h> 4 5 bool ans[100100]; 6 int n; 7 double X1,X2,Y1,Y2;

The Doors POJ - 1556(几何+图)

The Doors 题目链接:https://vjudge.net/problem/POJ-1556 题目: 思路:就是判断线段与线段是否相交,符合条件就加入图中,建完图后跑dij就行了,求最短路,,看了大神的.. #include<iostream> #include<cstdio> #include<cstring> #include<queue> #include<cmath> #define Max 105 #define eps 1e-

Pipe - POJ 1039(线段相交交点)

题目大意:有一个不反光并且不透光的管道,现在有一束光线从最左端进入,问能达到的最右端是多少,输出x坐标. 分析:刚开始做是直接枚举两个点然后和管道进行相交查询,不过这样做需要考虑的太多,细节不容易掌控.后来发现其实只需要对接口进行一下相交查询就简单多了,因为只需要考虑能不能通过每个截口就可以了,而且这样做的好处还有没有平行线和重叠线的情况,因为所有的截口都是垂直于x轴的,换一种想法海阔太空啊. 代码如下: =============================================

Pick-up sticks - POJ 2653 (线段相交)

题目大意:有一个木棒,按照顺序摆放,求出去上面没有被别的木棍压着的木棍..... 分析:可以维护一个队列,如果木棍没有被压着就入队列,如果判断被压着,就让那个压着的出队列,最后把这个木棍放进队列,不过速度并不快,枚举才是最快的......据说是任意时刻没有超过1000个top sticks.....很难注意到. 代码如下: =======================================================================================

POJ 2074 | 线段相交

#include<cstdio> #include<algorithm> #include<cstring> #include<cmath> #define eps 1e-8 using namespace std; bool dcmp(double x,double y) { if (fabs(x-y)>eps) return 1; return 0; } struct point { double x,y; point () {}; point (

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 :