码迷,mamicode.com
首页 > 其他好文 > 详细

NYOJ_83:迷宫寻宝(二)(计算几何)

时间:2017-02-18 19:53:08      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:line   code   blank   nyist   线段相交   nyoj   using   main   tar   

题目链接

枚举所有墙的2n个端点与宝物的位置作为一条线段(墙的端点必定与边界重合), 求出与之相交的最少线段数(判断线段相交时用跨立实验的方法),+1即为结果。

#include<bits/stdc++.h>
using namespace std;

struct point
{
    double x,y;
    point operator -(const point& rhs)const
    {
        point ret;
        ret.x=x-rhs.x;
        ret.y=y-rhs.y;
        return ret;
    }
    double operator *(const point& rhs)const//叉乘
    {
        return x*rhs.y-y*rhs.x;
    }
    bool operator <(const point& rhs)const
    {
        return x<rhs.x||x==rhs.x&&y<rhs.y;
    }
} la[105],lb[105],en;
int n;

bool ok(point a,point b,point c,point d)
{
    return ((b-a)*(c-a))*((b-a)*(d-a))<0;
}

int cal(point A,point B)
{
    int ret=0;
    for(int i=0; i<n; i++)
        if(ok(la[i],lb[i],A,B))
            ret++;
    return ret;
}

int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        if(n<3)
        {
            puts("1");    //边界占一个
            continue;
        }
        for(int i=0; i<n; i++)
            scanf("%lf%lf%lf%lf",&la[i].x,&la[i].y,&lb[i].x,&lb[i].y);
        scanf("%lf%lf",&en.x,&en.y);
        int ans=1000;
        for(int i=0; i<n; i++)
        {
            ans=min(ans,cal(en,la[i]));
            ans=min(ans,cal(en,lb[i]));
        }
        printf("%d\n",ans+1);
    }
}

 

NYOJ_83:迷宫寻宝(二)(计算几何)

标签:line   code   blank   nyist   线段相交   nyoj   using   main   tar   

原文地址:http://www.cnblogs.com/Just--Do--It/p/6413849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!