HDU 1756 Cupid's Arrow(판정 점 은 다각형 내)
http://acm.hdu.edu.cn/showproblem.php?pid=1756
제목:
n 개의 정점 다각형 을 드 리 고 m 개의 점 좌 표를 드 리 겠 습 니 다.이 m 개의 점 마다 다각형 안에 있 는 지 물 어 보 겠 습 니 다.사 이 드 아웃
분석:
간단 한 다각형(변 불 자 교)에 대해 서 는 두 가지 방법 으로 판단 할 수 있다.첫 번 째 는 이 점 과 다각형 각 변 으로 구 성 된 삼각형 면적 과 다각형 의 총 면적 과 같 는 지 를 보 는 것 이다.
두 번 째 는 유 여가<<훈련 지침>>P271 페이지 에 소 개 된 방사선 법 템 플 릿 입 니 다.
아래 코드 는 두 번 째 방법 을 사용한다.
AC 코드:
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
const int maxn=100+5;
const double eps=1e-10;
int dcmp(double x)
{
if(fabs(x)<eps) return 0;
return x<0?-1:1;
}
struct Point
{
double x,y;
Point(){}
Point(double x,double y):x(x),y(y){}
}poly[maxn];
typedef Point Vector;
Vector operator-(Point A,Point B)
{
return Vector(A.x-B.x,A.y-B.y);
}
double Dot(Vector A,Vector B)
{
return A.x*B.x+A.y*B.y;
}
double Cross(Vector A,Vector B)
{
return A.x*B.y-A.y*B.x;
}
bool InSegment(Point P,Point A,Point B)
{
return dcmp(Cross(A-P,B-P))==0 && dcmp(Dot(A-P,B-P))<=0;
}
bool PointInPolygon(Point p,Point* poly,int n)
{
int wn=0;
for(int i=0;i<n;++i)
{
if(InSegment(p,poly[i],poly[(i+1)%n])) return true;
int k=dcmp(Cross(poly[(i+1)%n]-poly[i], p-poly[i]));
int d1=dcmp(poly[i].y-p.y);
int d2=dcmp(poly[(i+1)%n].y-p.y);
if(k>0 && d1<=0 && d2>0) wn++;
if(k<0 && d2<=0 && d1>0) wn--;
}
if(wn!=0) return true;
return false;
}
int main()
{
int n,m;
while(scanf("%d",&n)==1)
{
for(int i=0;i<n;++i)
scanf("%lf%lf",&poly[i].x,&poly[i].y);
scanf("%d",&m);
while(m--)
{
Point p;
scanf("%lf%lf",&p.x,&p.y);
printf("%s
",PointInPolygon(p,poly,n)?"Yes":"No");
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
하나의 수조를 깊이가 가장 낮은 두 갈래 나무로 바꾸다문제 정의: Givena sorted(increasing order) array, write an algorithm to create abinary tree with minimal height. 생각: 이 문제는 비...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.