HDU 1542 && POJ 1151 Atlantis(线段树+扫描线)

题目地址:HDOJ地址:HDU 1542  POJ 地址:POJ 1151

第一发扫描线。。费了好大一番功夫。。构思用了半天。。写出来调试成功用了半天。。。真是弱渣。。

所谓扫描线就是从上往下或从下往上扫描,每到一个边,就进行增或删的处理。最后出来的值就是总的面积。对于求面积并的问题,可以参考这篇博客(博客地址),讲的不错。

具体实现过程是用lazy标记此时的边数量,如果大于0,说明这个地方有边,等于0则说明没有边。然后进行更新操作。最后直接使用根节点的值就行。

代码如下:

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;
#define lson l, mid, rt<<1
#define rson mid+1, r, rt<<1|1
int lazy[10000], cnt;
double sum[10000], c[10000];
struct node
{
    double l, r, h;
    int f;
} edge[1000];
int cmp(node x, node y)
{
    return x.h=r)
    {
        lazy[rt]+=x;
        if(lazy[rt])
        {
            sum[rt]=c[r+1]-c[l];
        }
        else if(l!=r)
        {
            PushUp(rt);
        }
        else if(l==r)
            sum[rt]=0;
        return ;
    }
    int mid=l+r>>1;
    if(ll<=mid) update(ll,rr,x,lson);
    if(rr>mid) update(ll,rr,x,rson);
    if(lazy[rt]==0)
    {
        PushUp(rt);
    }
    else
    {
        sum[rt]=c[r+1]-c[l];
    }
}
int erfen(double x, int high)
{
    int low=0, mid;
    while(low<=high)
    {
        mid=low+high>>1;
        if(c[mid]==x)
            return mid;
        else if(c[mid]>x)
        {
            high=mid-1;
        }
        else
            low=mid+1;
    }
    return -1;
}
int main()
{
    int n, i, j, num=0, k;
    double x1, x2, y1, y2, ans;
    while(scanf("%d",&n)!=EOF&&n)
    {
        num++;
        memset(sum,0,sizeof(sum));
        memset(lazy,0,sizeof(lazy));
        ans=0;
        cnt=0;
        k=0;
        for(i=0; i


你可能感兴趣的:(线段树)