poj 3774 Elune’s Arrow 解题报告

题意:从一个点发出一支箭(一条射线)射击指定敌人,箭在碰到敌人会停止。给出方向和人所在位置,问是否能击中指定目标。

解法:纯纯的几何……判线段相交和距离就好了。如果射线和除了目标以外的点有交点并且两点之间的距离小于射线和目标的距离,也要输出MISS

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
#include <iostream>
#include <map>
#include <cmath>
using namespace std;
const int maxn = 100005;
const int inf = 111111;
const double eps = 1e-8;
int dcmp(double x)
{
	if(fabs(x)<eps) return 0;
	else return x < 0? -1:1;
}
struct Point{
    double x,y;
    Point() {} ;
    Point (double a , double b) : x(a) , y(b) {}
    Point operator * (double c) {return Point (x * c , y * c );}
    Point operator / (double c) {return Point (x / c , y / c );}
	Point operator - (const Point a) {return Point (x - a.x , y - a.y );}
	Point operator + (const Point a) {return Point (x + a.x , y + a.y );}
	bool operator == (const Point &a)const
	{
		return dcmp(x-a.x)==0&&dcmp(y-a.y)==0;
	}
	bool operator <(const Point &a)const
	{
		return x<a.x||(x==a.x&&y<a.y);
	}
	void input(){scanf("%lf%lf",&x,&y);}
	void output(){printf("%.2f %.2f\n",x,y);}
};
typedef Point Vector;
struct Polygon{
    int n;
    Point p[15];
    void input()
    {
        scanf("%d",&n);
        for(int i = 0; i < n; i++) p[i].input();
    }
};


Vector get_vector(Point a,Point b)
{
	return Point(b.x-a.x,b.y-a.y);
}
double Cross(Vector a,Vector b)
{
	return a.x*b.y-a.y*b.x;
}
double Dot(Vector a,Vector b)
{
	return a.x*b.x+a.y*b.y;
}
double Length(Vector a)
{
	return sqrt(Dot(a,a));
}
double Getdis(Point p1, Point p2){
    return sqrt((p1.x-p2.x)*(p1.x-p2.x) + (p1.y-p2.y)*(p1.y-p2.y));
}
Point Getinter(Point a,Vector aa,Point b,Vector bb)
{
	Vector u = a-b;
	double t = Cross(bb,u)/Cross(aa,bb);
	return a+aa*t;
}
bool Isinter(Point s1, Point e1, Point s2, Point e2){
    if( min(s1.x, e1.x) <= max(s2.x, e2.x) &&
        min(s1.y, e1.y) <= max(s2.y, e2.y) &&
        min(s2.x, e2.x) <= max(s1.x, e1.x) &&
        min(s2.y, e2.y) <= max(s1.y, e1.y) &&
        dcmp(Cross(s2-s1,e2-s1))*dcmp(Cross(s2-e1,e2-e1))<=0&&
        dcmp(Cross(s1-s2,e1-s2))*dcmp(Cross(s1-e2,e1-e2))<=0)
        return true;
    return false;
}
Point s,t,p;
bool flag;
void solve(Polygon *pol,int k)
{
    Point p1,p2,tmp;
    for(int i = 0; i < pol[k].n; i++)
    {
        p1 = pol[k].p[i];
        p2 = pol[k].p[(i+1)%pol[k].n];
        // p1.output();p2.output();
        if(Isinter(s,t,p1,p2))
        {
            if(dcmp(Cross(s-t,p1-p2))==0)
            {
                if(Getdis(p1,s)<Getdis(p2,s)) tmp = p1;
                else tmp = p2;
                //tmp.output();
            }
            else
                tmp = Getinter(s,t-s,p1,p2-p1);
            //tmp.output();
            if(p.x==inf||(Getdis(tmp,s) < Getdis(p,s)))
            {
                if(k!=0) {flag = 0;return;}
                p = tmp;
            }
        }
    }

}
int main()
{
    //freopen("in.txt","r",stdin);
    int n,m;

    Vector dir;
    Polygon pol[15];
    while(scanf("%d",&n)&&n)
    {
        flag = 1;
        s.input();
        dir.input();
        for(int i = 0; i < n; i++)
            pol[i].input();
        p.x = inf,p.y = inf;
        t = s+dir*inf;
        //s.output();t.output();
        solve(pol,0);
        if(p.x==inf) flag = 0;
        //p.output();
        for(int i = 1; flag&&i<n; i++)
            solve(pol,i);
        if(flag) printf("HIT\n");
        else printf("MISS\n");
    }
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值