博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 3335 Rotating Scoreboard 半平面交
阅读量:6609 次
发布时间:2019-06-24

本文共 1646 字,大约阅读时间需要 5 分钟。

求多边形的核

#include 
#include
#include
#define eps 1e-18using namespace std;const int MAXN = 105;double a, b, c;int n, cnt;struct Point{ double x, y;}point[MAXN], p[MAXN], tp[MAXN];void Get_equation(Point p1, Point p2){ a = p2.y - p1.y; b = p1.x - p2.x; c = p2.x * p1.y - p1.x * p2.y;}Point Intersection(Point p1, Point p2){ double u = fabs(a * p1.x + b * p1.y + c); double v = fabs(a * p2.x + b * p2.y + c); Point t; t.x = (p1.x * v + p2.x * u) / (u + v); t.y = (p1.y * v + p2.y * u) / (u + v); return t;}void Cut(){ int tmp = 0; for(int i=1; i<=cnt; i++) { //顺时针是>-eps和>eps,逆时针是
<-eps if(a * p[i].x + b * p[i].y + c > -eps) tp[++tmp] = p[i]; else { if(a * p[i-1].x + b * p[i-1].y + c > eps) tp[++tmp] = Intersection(p[i-1], p[i]); if(a * p[i+1].x + b * p[i+1].y + c > eps) tp[++tmp] = Intersection(p[i], p[i+1]); } } for(int i=1; i<=tmp; i++) p[i] = tp[i]; p[0] = p[tmp]; p[tmp+1] = p[1]; cnt = tmp;}void solve(){ for(int i=1; i<=n; i++) p[i] = point[i]; point[n+1] = point[1]; p[0] = p[n]; p[n+1] = p[1]; cnt = n; for(int i=1; i<=n; i++) { Get_equation(point[i], point[i+1]); Cut(); }}int main(){ int T; scanf("%d", &T); while(T--) { scanf("%d", &n); for(int i=1; i<=n; i++) scanf("%lf%lf", &point[i].x, &point[i].y); solve(); puts(cnt > 0? "YES" : "NO"); } return 0;}

 

转载于:https://www.cnblogs.com/pach/p/7458229.html

你可能感兴趣的文章
POJ1611-The Suspects
查看>>
Linux下安装Python-3.3.2【转】
查看>>
LeetCode OJ:Merge Two Sorted Lists(合并两个链表)
查看>>
功能测试
查看>>
【BZOJ 1901】Dynamic Rankings
查看>>
阿里架构师都在学的知识体系
查看>>
PAT (Advanced Level) 1028. List Sorting (25)
查看>>
【转】聚集索引和非聚集索引的区别
查看>>
【转】mac os 安装php
查看>>
C# DllImport的用法
查看>>
Github-Client(ANDROID)开源之旅(二) ------ 浅析ActionBarSherkLock
查看>>
no identities are available for signing
查看>>
eclipse中如何去除警告:Class is a raw type. References to generic type Class<T> should be parameterized...
查看>>
Gradle脚本基础全攻略
查看>>
Django模版中的过滤器详细解析 Django filter大全
查看>>
Linux中使用pwconv实现passwd中密码到shadow
查看>>
Visual Studio 2017各版本安装包离线下载
查看>>
C#线程安全的那些事
查看>>
【论文笔记】Social Role-Aware Emotion Contagion in Image Social Networks
查看>>
rpm安装PostgreSQL
查看>>