POJ3525:Most Distant Point from the Sea——题解

http://poj.org/problem?id=3525

题目大意:给一个逆时针序列的多边形点集,求其中可以画的最大半径的圆的半径。

——————————————————————

二分枚举半径长度,然后将所有的边往内缩半径为r,求是否有内核即可。

#include<cstdio>
#include<queue>
#include<cctype>
#include<cstring>
#include<stack>
#include<cmath>
#include<algorithm>
using namespace std;
typedef double dl;
const dl eps=1e-10;
const int N=301;
struct Point{
    dl x;
    dl y;
}p[N],point[N],q[N],z;
//point,初始点
//q,暂时存可行点
//p,记录可行点
int n,curcnt,cnt;
//curcnt,暂时存可行点个数
//cnt,记录可行点个数
inline Point getmag(Point a,Point b){
    Point s;
    s.x=b.x-a.x;s.y=b.y-a.y;
    return s;
}
inline dl multiX(Point a,Point b){
    return a.x*b.y-b.x*a.y;
}
inline void getline(Point x,Point y,dl &a,dl &b,dl &c){
    a=y.y-x.y;
    b=x.x-y.x;
    c=y.x*x.y-x.x*y.y;
    return;
}
inline Point intersect(Point x,Point y,dl a,dl b,dl c){
    Point s;
    dl u=fabs(a*x.x+b*x.y+c);
    dl v=fabs(a*y.x+b*y.y+c);
    s.x=(x.x*v+y.x*u)/(u+v);
    s.y=(x.y*v+y.y*u)/(u+v);
    return s;
}
inline void cut(dl a,dl b,dl c){
    curcnt=0;
    for(int i=1;i<=cnt;i++){
        if(a*p[i].x+b*p[i].y+c>-eps)q[++curcnt]=p[i];
        else{
            if(a*p[i-1].x+b*p[i-1].y+c>eps){
                q[++curcnt]=intersect(p[i],p[i-1],a,b,c);
        }
            if(a*p[i+1].x+b*p[i+1].y+c>eps){
                q[++curcnt]=intersect(p[i],p[i+1],a,b,c);
        }
        }
    }
    for(int i=1;i<=curcnt;i++)p[i]=q[i];
    p[curcnt+1]=p[1];p[0]=p[curcnt];
    cnt=curcnt;
    return;
}
inline void init(){
    for(int i=1;i<=n;i++)p[i]=point[i];
    z.x=z.y=0;
    p[n+1]=p[1];
    p[0]=p[n];
    cnt=n;
    return;
}
inline void regular(){//调换方向
    for(int i=1;i<(n+1)/2;i++)swap(point[i],point[n-i]);
    return;
}
inline bool solve(dl r){
    init();
    for(int i=1;i<=n;i++){
    Point ta,tb,tt;
    tt.x=point[i+1].y-point[i].y;
    tt.y=point[i].x-point[i+1].x;
    dl k=r/sqrt(tt.x*tt.x+tt.y*tt.y);
    tt.x*=k;tt.y*=k;
    ta.x=point[i].x+tt.x;
    ta.y=point[i].y+tt.y;
    tb.x=point[i+1].x+tt.x;
    tb.y=point[i+1].y+tt.y;
        dl a,b,c;
        getline(ta,tb,a,b,c);
        cut(a,b,c);
    }
    return cnt;
}
int main(){
    while(scanf("%d",&n)!=EOF&&n){
        for(int i=1;i<=n;i++){
            scanf("%lf%lf",&point[i].x,&point[i].y);
        }
    regular();
    point[n+1]=point[1];
    dl l=0,r=10000000;
    while(fabs(l-r)>eps){
        dl mid=(l+r)/2.0;
        if(solve(mid))l=mid;
        else r=mid;
    }
       printf("%.6f\n",l);
    }
    return 0;
}

原文地址:https://www.cnblogs.com/luyouqi233/p/8118401.html

时间: 2024-10-09 07:37:19

POJ3525:Most Distant Point from the Sea——题解的相关文章

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

POJ3525 Most Distant Point from the Sea

半平面交+二分 二分最远距离把每个直线往里移这个距离然后看一下半平面交是否存在就好 然后注意精度问题 [poj G++需要用%f C++没有问题 //Love and Freedom. #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> #define inf 20021225 #define ll long long #define db double #define

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>

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

pro:给定凸多边形,求凸多边形内的点到最近边界的最远距离. sol:显然是二分一个圆,使得圆和凸多边形不相交,但是这样很难实现. 由于是凸多边形,我们可以把二分圆转化为二分凸多边形的移动. 如果每一边向左移动Mid后,任然存在“核”,则表示存在一点合法. 直线移动:移动起点即可,方向不变. #include<bits/stdc++.h> #define ll long long #define rep(i,a,b) for(int i=a;i<=b;i++) using namespa

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

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