POJ 1066 Treasure Hunt (线段相交)

题意:给你一个100*100的正方形,再给你n条线(墙),保证线段一定在正方形内且端点在正方形边界(外墙),最后给你一个正方形内的点(保证不再墙上)

告诉你墙之间(包括外墙)围成了一些小房间,在小房间内可以从房间边界(墙)的中点走过这堵墙,问你从给定的点走到外墙外最少走过的墙数

题解:注意我们可以从每个房间的墙的中点走出,而不是一整条线段(墙)的中点走出。。。。

然后我们可以找四周的边界中的每个点与给定点的连线,再与给定的线段找相交最少的交点数就是答案

但是边界每个点是无穷多个,因此我们可以这样做:枚举每个给定线段的两个端点加外墙的四个端点

因为在外墙上每两个点之间的点不可能绕过其他的墙

#include<set>
#include<map>
#include<queue>
#include<stack>
#include<cmath>
#include<vector>
#include<string>
#include<cstdio>
#include<cstring>
#include<iomanip>
#include<stdlib.h>
#include<iostream>
#include<algorithm>
using namespace std;
#define eps 1E-8
/*注意可能会有输出-0.000*/
#define Sgn(x) (x<-eps? -1 :x<eps? 0:1)//x为两个浮点数差的比较,注意返回整型
#define Cvs(x) (x > 0.0 ? x+eps : x-eps)//浮点数转化
#define zero(x) (((x)>0?(x):-(x))<eps)//判断是否等于0
#define mul(a,b) (a<<b)
#define dir(a,b) (a>>b)
typedef long long ll;
typedef unsigned long long ull;
const int Inf=1<<28;
const ll INF=1ll<<60;
const double Pi=acos(-1.0);
const int Mod=1e9+7;
const int Max=500;
struct point
{
    double x,y;
};
point poi[Max],enn;
double xmult(point p1,point p2,point p0)//计算 cross product (p1-p0) x (p2-p0)
{
    return (p1.x-p0.x)*(p2.y-p0.y)-(p2.x-p0.x)*(p1.y-p0.y);
}

int isIntersected(point p1,point p2,point l1,point l2)//线段相交(不包括端点重合)
{
    return (max(p1.x,p2.x)>=min(l1.x,l2.x)) &&
           (max(p1.y,p2.y)>=min(l1.y,l2.y)) &&
           (max(l1.x,l2.x)>=min(p1.x,p2.x)) &&
           (max(l1.y,l2.y)>=min(p1.y,p2.y)) &&
           (xmult(l1,p2,p1)*xmult(p2,l2,p1)>0) &&
           (xmult(p1,l2,l1)*xmult(l2,p2,l1)>0) ;
}

int Solve(int n)
{
    int minx=Inf;
    for(int i=0; i<n; ++i)//枚举每个端点
    {
        int res=1;
        for(int j=0; j<n-4; j+=2)//每堵墙找是否有交点
        {
            if(isIntersected(poi[i],enn,poi[j],poi[j+1]))
                res++;
        }
        minx=min(minx,res);
    }
    if(!n)
        return 1;
    return minx;
}
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        n<<=1;
        for(int i=0; i<n; ++i)
        {
            scanf("%lf %lf",&poi[i].x,&poi[i].y);
        }
        scanf("%lf %lf",&enn.x,&enn.y);
        poi[n].x=0,poi[n++].y=0;
        poi[n].x=0,poi[n++].y=100;
        poi[n].x=100,poi[n++].y=0;
        poi[n].x=100,poi[n++].y=100;//添加外墙四个点
        printf("Number of doors = %d\n",Solve(n));
    }
    return 0;
}

时间: 2024-10-18 12:48:01

POJ 1066 Treasure Hunt (线段相交)的相关文章

POJ 1066 Treasure Hunt 线段相交判断

判断以宝藏的坐标和中点的坐标为线段的点是否与墙相交,求最少相交的墙的数量 中点算出来,枚举中点和墙 #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #define eps 1e-8 #define INF 1e9 using namespace std; const int maxn=100; typede

POJ 1066 Treasure Hunt(相交线段&amp;amp;&amp;amp;更改)

Treasure Hunt 大意:在一个矩形区域内.有n条线段,线段的端点是在矩形边上的,有一个特殊点,问从这个点到矩形边的最少经过的线段条数最少的书目,穿越仅仅能在中点穿越. 思路:须要巧妙的转换一下这个问题,由于从一个点到终点不可能"绕过"围墙.仅仅能穿过去,所以门是否开在中点是无所谓的,仅仅要求四周线段中点到终点的线段与墙的最少交点个数就可以.更进一步,实际上,仅仅需推断四周围墙的全部点与终点的连线与内墙的最少交点加一就可以. struct Point{ double x, y;

POJ 1066 Treasure Hunt(线段相交&amp;&amp;转换)

Treasure Hunt 大意:在一个矩形区域内,有n条线段,线段的端点是在矩形边上的,有一个特殊点,问从这个点到矩形边的最少经过的线段条数最少的书目,穿越只能在中点穿越. 思路:需要巧妙的转换一下这个问题,因为从一个点到终点不可能"绕过"围墙,只能穿过去,所以门是否开在中点是无所谓的,只要求四周线段中点到终点的线段与墙的最少交点个数即可.更进一步,实际上,只需判断四周围墙的所有点与终点的连线与内墙的最少交点加一即可. struct Point{ double x, y; } A,

简单几何(线段相交) POJ 1066 Treasure Hunt

题目传送门 题意:从四面任意点出发,有若干障碍门,问最少要轰掉几扇门才能到达终点 分析:枚举入口点,也就是线段的两个端点,然后选取与其他线段相交点数最少的 + 1就是答案.特判一下n == 0的时候 /************************************************ * Author :Running_Time * Created Time :2015/10/26 星期一 16:30:26 * File Name :POJ_1066.cpp ***********

poj 1066 Treasure Hunt (线段交)

http://poj.org/problem?id=1066 题意:给出一个100*100的正方形区域,通过若干连接区域边界的线段将正方形区域分割为多个不规则多边形小区域,然后给出宝藏位置,要求从区域外部开辟到宝藏所在位置的一条路径,使得开辟路径所需要打通的墙壁数最少("打通一堵墙"即在墙壁所在线段中间位置开一空间以连通外界),输出应打通墙壁的个数(包括边界上墙壁). 思路:用结构体保存中点,然后判断这些点之间能否连通,最短路即可 由于精度问题,在判断线段相交时精度没有处理好导致答案一

POJ 1066 Treasure Hunt(计算几何)

Treasure Hunt Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5857   Accepted: 2439 Description Archeologists from the Antiquities and Curios Museum (ACM) have flown to Egypt to examine the great pyramid of Key-Ops. Using state-of-the-ar

POJ 1066 Treasure Hunt

枚举+判断线段相交 #include<cstdio> #include<cmath> #include<cstring> #include<cmath> #include<algorithm> #include<map> #include<vector> using namespace std; const int INF=0x7FFFFFFF; const int maxn=30+10; #define EPS 1e-8

POJ 1066 Treasure Hunt --几何,线段相交

题意: 正方形的房子,给一些墙,墙在区域内是封闭的,给你人的坐标,每穿过一道墙需要一把钥匙,问走出正方形需要多少把钥匙. 解法: 因为墙是封闭的,所以绕路也不会减少通过的墙的个数,还不如不绕路走直线,所以枚举角度,得出直线,求出与正方形内的所有墙交点最少的值,最后加1(正方形边界). 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include

[poj] 1066 Treasure Hunt || 判断直线相交

原题 在金字塔内有一个宝藏p(x,y),现在要取出这个宝藏. 在金字塔内有许多墙,为了进入宝藏所在的房间必须把墙炸开,但是炸墙只能炸每个房间墙的中点. 求将宝藏运出城堡所需要的最小炸墙数. 判断点和直线相交. 枚举每道墙的两个端点和p的连线这条线段和墙的交点的次数最小值即为需要炸墙的最小次数. [注意当墙数为零时输出1:] #include<cstdio> #include<algorithm> #define N 33 using namespace std; int ans=0