Hdu 3685 Rotational Painting(多边形重心+凸包)

题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=3685

思路:先求出多边形重心,放置的边一定为凸包边。判断重心是否落在边之间(求点到直线与点到线段的距离,判断)。

4
0 0
4 0
8 4
4 4
注意这种情况,重心不能在凸包边端点的垂线上。

#include
#include
#include
#include
using namespace std;
const double eps=1e-10;
const int maxn=5e4+50;
struct Point
{
    double x,y;
    Point(double x=0,double y=0):x(x),y(y) {}
};
Point operator - (const Point &A,const Point &B)
{
    return Point(A.x-B.x,A.y-B.y);
}
bool operator < (const Point &a,const Point &b)
{
    return a.x1&&Cross(ch[m-1]-ch[m-2],p[i]-ch[m-1])<=0)
            m--;
        ch[m++]=p[i];
    }
    int k=m;
    for(int i=n-2; i>=0; i--)
    {
        while(m>k&&Cross(ch[m-1]-ch[m-2],p[i]-ch[m-1])<=0)
            m--;
        ch[m++]=p[i];
    }
    if(n>1) m--;
    return m;
}
double DistanceToLine(const Point &P,const Point &A,const Point &B)
{
    Point v1=B-A,v2=P-A;
    return fabs(Cross(v1,v2))/Length(v1);
}
double DistanceToSegment(const Point &P,const Point &A,const Point &B)
{
    if(A==B) return Length(P-A);
    Point v1=B-A,v2=P-A,v3=P-B;
    if(dcmp(Dot(v1,v2)<0)) return Length(v2);
    else if(dcmp(Dot(v1,v3))>0) return Length(v3);
    else return fabs(Cross(v1,v2))/Length(v1);
}
int n;
Point P[maxn],hull[maxn];
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        for(int i=0; i

你可能感兴趣的:(OJ_Hdu,计算几何_凸包,计算几何_杂,ACM)