hdu1542(扫描线求面积并)

题意:求多个矩形面积的并

思路:扫描线算法,对每个矩形,用两条平行于x轴的线段表示,然后对每条线段的y排序,然后就用平行于x轴的扫描线从y = 0出往上扫,每次求面积。这里n只有100,所以可以用暴力解。

代码如下:

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

#define N 1100
#define inf 0x7ffffff
#define eps 1e-9
#define pi acos(-1.0)
using namespace std;
double x[2*N];
struct node{
    double x1,x2,h;
    int flag;
    bool operator < (const node &a)const
    {
        if(h != a.h)  return h < a.h;
        return flag < a.flag;
    }
}s[N*2];
int color[2*N],b[N*2];
int main()
{
//freopen("input.txt","r",stdin);
//freopen("output.txt","w",stdout);
    int n,cas = 1;
    while(scanf("%d",&n) && n)
    {
        double x1,x2,y1,y2;
        int i;
        for(i = 0; i < n; i++)
        {
            scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2);
            x[2*i] = x1;
            x[2*i+1] = x2;

            s[2*i].x1 = x1;
            s[2*i].x2 = x2;
            s[2*i].h = y1;
            s[2*i].flag = 1;

            s[2*i+1].x1 = x1;
            s[2*i+1].x2 = x2;
            s[2*i+1].h = y2;
            s[2*i+1].flag = -1;
        }
        sort(s,s+2*n);
        sort(x,x+2*n);
        int tot = unique(x,x+2*n) - x;

        memset(color,0,sizeof(color));
        double ans = 0;

        for(i = 0; i < 2*n-1; i++)
        {
            int l = lower_bound(x,x+tot,s[i].x1 ) - x;
            int r = lower_bound(x,x+tot,s[i].x2 ) - x;

            for(int j = 2*l; j <= 2*r; j++)//注意要扩大两倍,不然有些数据过不了
                color[j] += s[i].flag;
            //for(int j = 0; j < tot; j++)    cout<<color[j]<<" ";cout<<endl;

            int k = 0;//我是用暴力解的,也可以用线段树维护底边长
            if(color[0])    b[k++] = 0;
            for(int j = 0; j < 2*tot; j++)
                if(color[j] == 0 && color[j+1]) b[k++] = j+1;
                else if(color[j] && color[j+1] == 0)    b[k++] = j;

            double temp = 0;
            for(int j = 0; j < k; j+=2)
                temp += ( x[ b[j+1]/2 ] - x[ b[j]/2 ]);
            ans += temp* (s[i+1].h - s[i].h);

        }
        printf("Test case #%d\n",cas++);
        printf("Total explored area: %.2lf\n\n",ans);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值