最大空凸包

Posted nublity

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最大空凸包相关的知识,希望对你有一定的参考价值。

#pragma GCC optimize(2)
#pragma GCC optimize(3, "Ofast", "inline")

#include<bits/stdc++.h>

#define ll long long
#define met(a, x) memset(a,x,sizeof(a))

using namespace std;
const double pi = acos(-1.0);
typedef struct Point 
    int x, y;

    Point() 

    Point(int x, int y) : x(x), y(y) 

    Point operator+(const Point &b) const  return Point(x + b.x, y + b.y); 

    Point operator-(const Point &b) const  return Point(x - b.x, y - b.y); 

    int operator*(const Point &b) const  return x * b.y - y * b.x; 

    int len() const  return x * x + y * y; 

    int operator<(const Point &a) const 
        if ((*this) * a > 0 || (*this) * a == 0 && len() < a.len())
            return 1;
        return 0;
    
 Point;
int n;
Point s[122], p[122];
int dp[122][122];

int Jud(int m) 
    int ans, i, j, now, k, flag, S;
    memset(dp, 0, sizeof(dp));
    ans = 0;
    for (i = 2; i <= m; i++) 
        now = i - 1;
        while (now >= 1 && p[i] * p[now] == 0)
            now--;
        flag = 0;
        if (now == i - 1)
            flag = 1;
        while (now >= 1) 
            S = p[now] * p[i];
            k = now - 1;
            while (k >= 1 && (p[now] - p[i]) * (p[k] - p[now]) > 0)
                k--;
            if (k >= 1)
                S += dp[now][k];
            if (flag)
                dp[i][now] = S;
            ans = max(ans, S);
            now = k;
        
        if (flag == 0)
            continue;
        for (j = 1; j <= i - 1; j++)
            dp[i][j] = max(dp[i][j], dp[i][j - 1]);
    
    return ans;


int main() 
    ios::sync_with_stdio(false);
    cin.tie(0);
    int _, i, j, m, ans;
    cin >> _;
    while (_--) 
        cin >> n;
        for (i = 1; i <= n; i++)
            cin >> s[i].x >> s[i].y;
        ans = 0;
        for (i = 1; i <= n; i++) 
            m = 0;
            for (j = 1; j <= n; j++) 
                if (s[j].y > s[i].y || s[j].y == s[i].y && s[j].x >= s[i].x)
                    p[++m] = s[j] - s[i];
            
            sort(p + 1, p + m + 1);
            ans = max(ans, Jud(m));
        
        cout << fixed << setprecision(1) << (ans/2.0) << endl;
    
    return 0;

 

以上是关于最大空凸包的主要内容,如果未能解决你的问题,请参考以下文章

最大空凸包

最大空凸包模板

O(n^3)求最大空凸包模板(2017沈阳icpc-C Empty Convex Polygons )

poj1259The Picnic & hdu6219 Empty Convex Polygon(17沈阳区域赛C)最大空凸包

Game of Taking Stones && POJ1259 /// 最大空凸包 几何+DP

HDU6219/POJ1259 [ICPC2017沈阳]Empty Convex Polygons 最大空凸包