POJ 1279 Art Gallery(半平面交求多边形核的面积)

题目链接

题意 : 求一个多边形的核的面积。

思路 : 半平面交求多边形的核,然后在求面积即可。

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <math.h>

using namespace std ;

struct node
{
    double x;
    double y ;
} p[1510],temp[1510],newp[1510];//p是最开始的多边形的每个点,temp是中间过程中临时存的多边形的每个点,newp是切割后的多边形的每个点
int n,newn ;//原来的点数,切割后的点数
double a,b,c ;//直线方程的三个系数

void getline(node x,node y)//求x与y两点确定的直线方程ax+by+c=0
{
    a = y.y-x.y ;
    b = x.x-y.x ;
    c = y.x*x.y - y.y*x.x ;
}
node intersect(node x,node y)//求x与y点确定的直线与ax+by+c=0这条直线的交点
{
    double u = fabs(a*x.x+b*x.y+c) ;
    double v = fabs(a*y.x+b*y.y+c) ;
    node t ;
    t.x = (x.x*v+y.x*u)/(u+v) ;//y.y-x.y=u+v;y.y-t.y=v;y.y-x.y=u;
    t.y = (x.y*v+y.y*u)/(u+v) ;
    return t ;
}
void cut()
{
    int cutn = 0 ;
    for(int i = 1 ; i <= newn ; i++)
    {
        if(a*newp[i].x+b*newp[i].y+c >= 0)//所有的点都大于0,说明所有的点都在这条直线的另一边,所以不用切
            temp[ ++cutn] = newp[i] ;
        else
        {
            if(a*newp[i-1].x+b*newp[i-1].y+c > 0)
                temp[++cutn ] = intersect(newp[i-1],newp[i]) ;//把新交点加入
            if(a*newp[i+1].x+b*newp[i+1].y+c > 0)
                temp[ ++cutn] = intersect(newp[i+1],newp[i]) ;
        }
    }
    for(int i = 1 ; i <= cutn ; i++)
        newp[i] = temp[i] ;
    newp[cutn+1] = temp[1] ;//能够找出所有点的前驱和后继
    newp[0] = temp[cutn] ;
    newn = cutn ;
}

double solve()
{
    for(int i = 1 ; i <= n ; i++)
    {
        newp[i] = p[i] ;
    }
    p[n+1] = p[1] ;
    newp[n+1] = newp[1] ;
    newp[0] = newp[n] ;
    newn = n ;
    for(int i = 1 ; i <= n ; i++)
    {
        getline(p[i],p[i+1]) ;//从头开始顺序遍历两个相邻点。
        cut() ;
    }
    //求多边形核的面积
    double s = 0 ;
    for(int i = 1 ; i <= newn ; i++)
        s += newp[i].x*newp[i+1].y-newp[i].y*newp[i+1].x ;
    return s = fabs(s/2.0) ;
}
void guizhenghua()
{
    for(int i = 1 ; i < (n+1)/2 ; i++)//规整化方向,顺时针变逆时针,逆时针变顺时针。
        swap(p[i],p[n-i]) ;
}
int main()
{
    int T ;
    scanf("%d",&T) ;
    while(T--)
    {
        scanf("%d",&n) ;
        for(int i = 1 ; i <= n ; i++)
            scanf("%lf %lf",&p[i].x,&p[i].y) ;
        double s = solve() ;
        printf("%.2lf\n",s) ;
    }
    return 0;
}

时间: 2024-10-13 16:12:05

POJ 1279 Art Gallery(半平面交求多边形核的面积)的相关文章

POJ 1279 Art Gallery 半平面交+求多边形核的面积

裸的:半平面交+求多边形核的面积 Art Gallery Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5735   Accepted: 2419 Description The art galleries of the new and very futuristic building of the Center for Balkan Cooperation have the form of polygons (not

POJ 1279 Art Gallery 半平面交求多边形核

第一道半平面交,只会写N^2. 将每条边化作一个不等式,ax+by+c>0,所以要固定顺序,方便求解. 半平面交其实就是对一系列的不等式组进行求解可行解. 如果某点在直线右侧,说明那个点在区域内,否则出现在左边,就可能会有交点,将交点求出加入. //#pragma comment(linker, "/STACK:16777216") //for c++ Compiler #include <stdio.h> #include <iostream> #inc

POJ 1279 Art Gallery [半平面交]

Art Gallery Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 7324   Accepted: 2936 Description The art galleries of the new and very futuristic building of the Center for Balkan Cooperation have the form of polygons (not necessarily conve

POJ 1279 Art Gallery 半平面交 多边形的核

题意:求多边形的核的面积 套模板即可 #include <iostream> #include <cstdio> #include <cmath> #define eps 1e-18 using namespace std; const int MAXN = 1555; double a, b, c; int n, cnt; struct Point { double x, y; double operator ^(const Point &b) const {

POJ 3335 Rotating Scoreboard(半平面交求多边形核)

题目链接 题意 : 给你一个多边形,问你在多边形内部是否存在这样的点,使得这个点能够看到任何在多边形边界上的点. 思路 : 半平面交求多边形内核. 半平面交资料 关于求多边形内核的算法 什么是多边形的内核? 它是平面简单多边形的核是该多边形内部的一个点集,该点集中任意一点与多边形边界上一点的连线都处于这个多边形内部.就是一个在一个房子里面放一个摄像 头,能将所有的地方监视到的放摄像头的地点的集合即为多边形的核. 如上图,第一个图是有内核的,比如那个黑点,而第二个图就不存在内核了,无论点在哪里,总

poj 1279 -- Art Gallery (半平面交)

鏈接:http://poj.org/problem?id=1279 Art Gallery Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5337   Accepted: 2277 Description The art galleries of the new and very futuristic building of the Center for Balkan Cooperation have the form

POJ 1474 Video Surveillance 半平面交求多边形是否有核

裸的半平面交求多边形是否有核. 多边形的核: 在多边形核上的点可以看到多边形的所有顶点,凸多边形的核显然就是多边形本身. 多边形的核是一个凸包,对多边形的所有边都做向着多边形的半平面交在判断一下是否构成凸包就可以了 一样的题目还有POJ3335 Video Surveillance Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 3438   Accepted: 1523 Description A friend of y

POJ 3335 Rotating Scoreboard 半平面交求多边形内核

题目大意:多边形求内核模板题 思路:半平面交,我用的是O(nlogn)的半平面交,但是有一个问题,就是当多边形内核是一个点的时候,半平面交所得到的答案是空集合,但是输出应该是yes,实在没有什么好的解决方法,最后只能把所有直线向右移动,然后在求内核.但是这样做eps的不同取值有的时候能A有的时候不能A.有没有什么好的解决方法啊!!!求解答啊!!! CODE: #include <cmath> #include <cstdio> #include <cstring> #i

POJ 1474 Video Surveillance 半平面交求多边形内核存在性

题目大意:一个楼有很多层,每一层是一个多多边形,问每一层是否有点能够看到这一层的全貌. 思路:半平面交解多边形内核存在性,裸题.题中怎么没写数据范围?..让我还re几次.. CODE: #include <cmath> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define MAX 3010 #define EPS 1e-8 #de