在某塊平面土地上有N個點,你可以選擇其中的任意四個點,將這片土地圍起來,當然,你希望這四個點圍成的多邊形面積最大。
第1行一個正整數N,接下來N行,每行2個數x,y,表示該點的橫坐標和縱坐標。
最大的多邊形面積,答案精確到小數點後3位。
數據范圍 n<=2000, |x|,|y|<=100000
很顯然這四個點都是凸包上的。
枚舉對角線,然後維護一下另外兩個頂點,發現另外兩個頂點是單調的,用旋轉卡殼的思想很好實現。
#include#include #include #include #include #include #define F(i,j,n) for(int i=j;i<=n;i++) #define D(i,j,n) for(int i=j;i>=n;i--) #define ll long long #define maxn 2005 #define eps 1e-8 using namespace std; int n,top; double ans; struct data{double x,y;}p[maxn],s[maxn]; inline double dcmp(double a) { if (fabs(a)<=eps) return 0; else return a>0?1:-1; } inline double dis(data a,data b) { return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y); } inline data operator -(data a,data b) { return (data){a.x-b.x,a.y-b.y}; } inline double operator *(data a,data b) { return a.x*b.y-a.y*b.x; } inline bool operator <(data a,data b) { int t=dcmp((p[1]-a)*(p[1]-b)); if (t==0) return dis(p[1],a) 0; } inline void solve() { int t=1; F(i,2,n) if (p[i].y 1&&dcmp((p[i]-s[top-1])*(s[top]-s[top-1]))>=0) top--; s[++top]=p[i]; } } inline void getans() { int a,b; s[top+1]=s[1]; F(x,1,top-2) { a=x%top+1;b=(x+2)%top+1; F(y,x+2,top) { while (a%top+1!=y&&dcmp((s[a+1]-s[x])*(s[y]-s[x])-(s[a]-s[x])*(s[y]-s[x]))>0) a=a%top+1; while (b%top+1!=x&&dcmp((s[y]-s[x])*(s[b+1]-s[x])-(s[y]-s[x])*(s[b]-s[x]))>0) b=b%top+1; ans=max(ans,(s[a]-s[x])*(s[y]-s[x])+(s[y]-s[x])*(s[b]-s[x])); } } } int main() { scanf("%d",&n); F(i,1,n) scanf("%lf%lf",&p[i].x,&p[i].y); solve(); getans(); printf("%.3lf\n",ans/2.0); return 0; }