uvalive 3890 Most Distant Point from the Sea

题意:求一个凸多边形中一点到边的最大距离。

思路:转换成在多边形内部,到每边距离为d的直线所围成的内多边形是否存在。也就是,二分距离+半平面交。

  1 #include<cstdio>
  2 #include<cmath>
  3 #include<cstring>
  4 #include<algorithm>
  5 #include<iostream>
  6 #include<memory.h>
  7 #include<cstdlib>
  8 #include<vector>
  9 #define clc(a,b) memset(a,b,sizeof(a))
 10 #define LL long long int
 11 #define up(i,x,y) for(i=x;i<=y;i++)
 12 #define w(a) while(a)
 13 const double inf=0x3f3f3f3f;
 14 const int N = 4010;
 15 const double eps = 5*1e-13;
 16 const double PI = acos(-1.0);
 17 using namespace std;
 18
 19 struct Point
 20 {
 21     double x, y;
 22     Point(double x=0, double y=0):x(x),y(y) { }
 23 };
 24
 25 typedef Point Vector;
 26
 27 Vector operator + (const Vector& A, const Vector& B)
 28 {
 29     return Vector(A.x+B.x, A.y+B.y);
 30 }
 31 Vector operator - (const Point& A, const Point& B)
 32 {
 33     return Vector(A.x-B.x, A.y-B.y);
 34 }
 35 Vector operator * (const Vector& A, double p)
 36 {
 37     return Vector(A.x*p, A.y*p);
 38 }
 39 double Dot(const Vector& A, const Vector& B)
 40 {
 41     return A.x*B.x + A.y*B.y;
 42 }
 43 double Cross(const Vector& A, const Vector& B)
 44 {
 45     return A.x*B.y - A.y*B.x;
 46 }
 47 double Length(const Vector& A)
 48 {
 49     return sqrt(Dot(A, A));
 50 }
 51 Vector Normal(const Vector& A)
 52 {
 53     double L = Length(A);
 54     return Vector(-A.y/L, A.x/L);
 55 }
 56
 57 double PolygonArea(vector<Point> p)
 58 {
 59     int n = p.size();
 60     double area = 0;
 61     for(int i = 1; i < n-1; i++)
 62         area += Cross(p[i]-p[0], p[i+1]-p[0]);
 63     return area/2;
 64 }
 65
 66 // 有向直线。它的左边就是对应的半平面
 67 struct Line
 68 {
 69     Point P;    // 直线上任意一点
 70     Vector v;   // 方向向量
 71     double ang; // 极角,即从x正半轴旋转到向量v所需要的角(弧度)
 72     Line() {}
 73     Line(Point P, Vector v):P(P),v(v)
 74     {
 75         ang = atan2(v.y, v.x);
 76     }
 77     bool operator < (const Line& L) const
 78     {
 79         return ang < L.ang;
 80     }
 81 };
 82
 83 // 点p在有向直线L的左边(线上不算)
 84 bool OnLeft(const Line& L, const Point& p)
 85 {
 86     return Cross(L.v, p-L.P) > 0;
 87 }
 88
 89 // 二直线交点,假定交点惟一存在
 90 Point GetLineIntersection(const Line& a, const Line& b)
 91 {
 92     Vector u = a.P-b.P;
 93     double t = Cross(b.v, u) / Cross(a.v, b.v);
 94     return a.P+a.v*t;
 95 }
 96
 97 const double INF = 1e8;
 98
 99 // 半平面交主过程
100 vector<Point> HalfplaneIntersection(vector<Line> L)
101 {
102     int n = L.size();
103     sort(L.begin(), L.end()); // 按极角排序
104
105     int first, last;         // 双端队列的第一个元素和最后一个元素的下标
106     vector<Point> p(n);      // p[i]为q[i]和q[i+1]的交点
107     vector<Line> q(n);       // 双端队列
108     vector<Point> ans;       // 结果
109
110     q[first=last=0] = L[0];  // 双端队列初始化为只有一个半平面L[0]
111     for(int i = 1; i < n; i++)
112     {
113         while(first < last && !OnLeft(L[i], p[last-1])) last--;
114         while(first < last && !OnLeft(L[i], p[first])) first++;
115         q[++last] = L[i];
116         if(fabs(Cross(q[last].v, q[last-1].v)) < eps)   // 两向量平行且同向,取内侧的一个
117         {
118             last--;
119             if(OnLeft(q[last], L[i].P)) q[last] = L[i];
120         }
121         if(first < last) p[last-1] = GetLineIntersection(q[last-1], q[last]);
122     }
123     while(first < last && !OnLeft(q[first], p[last-1])) last--; // 删除无用平面
124     if(last - first <= 1) return ans; // 空集
125     p[last] = GetLineIntersection(q[last], q[first]); // 计算首尾两个半平面的交点
126
127     // 从deque复制到输出中
128     for(int i = first; i <= last; i++) ans.push_back(p[i]);
129     return ans;
130 }
131
132 int main()
133 {
134     int n;
135     while(scanf("%d", &n) == 1 && n)
136     {
137         vector<Vector> p, v, normal;
138         int m, x, y;
139         for(int i = 0; i < n; i++)
140         {
141             scanf("%d%d", &x, &y);
142             p.push_back(Point(x,y));
143         }
144         if(PolygonArea(p) < 0) reverse(p.begin(), p.end());
145
146         for(int i = 0; i < n; i++)
147         {
148             v.push_back(p[(i+1)%n]-p[i]);
149             normal.push_back(Normal(v[i]));
150         }
151
152         double left = 0, right = 20000;
153         while(right-left > 1e-6)
154         {
155             vector<Line> L;
156             double mid = left+(right-left)/2;
157             for(int i = 0; i < n; i++) L.push_back(Line(p[i]+normal[i]*mid, v[i]));//平移直线
158             vector<Point> poly = HalfplaneIntersection(L);
159             if(poly.empty()) right = mid;
160             else left = mid;
161         }
162         printf("%.6lf\n", left);
163     }
164     return 0;
165 }

时间: 2024-11-08 17:30:27

uvalive 3890 Most Distant Point from the Sea的相关文章

UVA 3890 Most Distant Point from the Sea(二分法+半平面交)

题目链接:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=11358 [思路] 二分法+半平面交 二分与海边的的距离,由法向量可以得到平移后的各边,半平面交在特定精度判断是否有交集. [代码] 1 #include<cmath> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 using namespace s

简单几何(半平面交+二分) LA 3890 Most Distant Point from the Sea

题目传送门 题意:凸多边形的小岛在海里,问岛上的点到海最远的距离. 分析:训练指南P279,二分答案,然后整个多边形往内部收缩,如果半平面交非空,那么这些点构成半平面,存在满足的点. /************************************************ * Author :Running_Time * Created Time :2015/11/10 星期二 14:16:17 * File Name :LA_3890.cpp ********************

POJ3525-Most Distant Point from the Sea(二分+半平面交)

Most Distant Point from the Sea Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 3955   Accepted: 1847   Special Judge Description The main land of Japan called Honshu is an island surrounded by the sea. In such an island, it is natural t

poj 3525 Most Distant Point from the Sea 半平面交 + 二分

题目来源: http://poj.org/problem?id=3525 分析: 题意:给定一个凸多边形,求多边形中距离边界最远的点到边界的距离. 思路 : 每次将凸多边形每条边往里平移d,判断是否存在核:二分d即可. 多边形边上的点(x , y)往里平移d 后的 坐标: s , e  为向量的 起点和终点, len 为起点和终点的距离, h 为平移的距离 x' = x + dx y' = y + dy dx = ( s.y - e.y ) / len * h ,( 原理 是 利用 三角形的相似

Poj 3525 Most Distant Point from the Sea

地址:http://poj.org/problem?id=3525 题目: Most Distant Point from the Sea Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 5167   Accepted: 2331   Special Judge Description The main land of Japan called Honshu is an island surrounded by the s

poj3525Most Distant Point from the Sea(半平面交)

链接 求凸多边形内一点距离边最远. 做法:二分+半平面交判定. 二分距离,每次让每条边向内推进d,用半平面交判定一下是否有核. 本想自己写一个向内推进..仔细一看发现自己的平面交模板上自带.. 1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<stdlib.h> 6 #include<vector>

LA 3890 (半平面交) Most Distant Point from the Sea

题意: 给出一个凸n边形,求多边形内部一点使得该点到边的最小距离最大. 分析: 最小值最大可以用二分. 多边形每条边的左边是一个半平面,将这n个半平面向左移动距离x,则将这个凸多边形缩小了.如果这n个半平面交非空,则存在这样距离为x的点,反之则不存在. 半平面交的代码还没有完全理解. 和凸包类似,先对这些半平面进行极角排序.每次新加入的平面可能让队尾的平面变得“无用”,从而需要删除.由于极角序是环形的,所以也可能让队首元素变得“无用”.所以用双端队列来维护. 1 //#define LOCAL

POJ 3525 Most Distant Point from the Sea (半平面交向内推进+二分半径)

题目链接 题意 : 给你一个多边形,问你里边能够盛的下的最大的圆的半径是多少. 思路 :先二分半径r,半平面交向内推进r.模板题 1 #include <stdio.h> 2 #include <string.h> 3 #include <iostream> 4 #include <math.h> 5 const double eps = 1e-10 ; 6 7 using namespace std ; 8 9 struct node 10 { 11 do

POJ3525 Most Distant Point from the Sea(半平面交)

今天打算做两道半平面交,一题卡太久了,心都碎了... ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77