最大空凸包
#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; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 一个奇形怪状的面试题:Bean中的CHM要不要加volatile?
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· Obsidian + DeepSeek:免费 AI 助力你的知识管理,让你的笔记飞起来!
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了