POJ 1765 November Rain

题目大意:

有一些屋顶,相当于一些线段(不想交)。问每一条线段可以接到多少水,相对较低的屋顶可以接到高屋顶留下的水(如题图所示)。由于y1!=y2,所以保证屋顶是斜的。

解题思路:

扫描线,因为对于同一个x最多有25条线段,所以不需要线段树更新。

在扫描线的过程中构造出线段与线段之间的关系,好在最后计算每个屋顶可以接多少水。

下面是代码:

#include <set>
#include <map>
#include <queue>
#include <math.h>
#include <vector>
#include <string>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <algorithm>

#define eps 1e-8
#define pi acos(-1.0)
#define inf 107374182
#define inf64 1152921504606846976
#define lc l,m,tr<<1
#define rc m + 1,r,tr<<1|1
#define iabs(x)  ((x) > 0 ? (x) : -(x))
#define clear1(A, X, SIZE) memset(A, X, sizeof(A[0]) * (SIZE))
#define clearall(A, X) memset(A, X, sizeof(A))
#define memcopy1(A , X, SIZE) memcpy(A , X ,sizeof(X[0])*(SIZE))
#define memcopyall(A, X) memcpy(A , X ,sizeof(X))
#define max( x, y )  ( ((x) > (y)) ? (x) : (y) )
#define min( x, y )  ( ((x) < (y)) ? (x) : (y) )

using namespace std;

struct node
{
    int x1,x2,y1,y2;
    int num,next,w,deg;
    double k;
} segment[400005];

int n,point[400000<<1],ans[400005],q[400005],a[100];

bool cmp(node a,node b)
{
    return a.x1<b.x1;
}

int main()
{
    int last=0,now,tail=0,k,cnt,u,v,pointcnt,levelcnt;
    while(scanf("%d",&n)!=EOF)
    {
        pointcnt=0;
        for(int i=0; i<n; i++)
        {
            scanf("%d%d%d%d",&segment[i].x1,&segment[i].y1,&segment[i].x2,&segment[i].y2);
            segment[i].num=i;
            segment[i].next=-1;
            segment[i].w=0;
            segment[i].deg=0;
            segment[i].k=(1.0*segment[i].y2-segment[i].y1)/(segment[i].x2-segment[i].x1);
            point[pointcnt++]=segment[i].x1;
            point[pointcnt++]=segment[i].x2;
        }

        sort(point,point+pointcnt);
        pointcnt=unique(point,point+pointcnt)-point;

        sort(segment,segment+n,cmp);

        last=0;
        tail=0;
        levelcnt=0;

        for(int i = 0; i < pointcnt ; last=now,i++)
        {
            now=point[i];
            if(levelcnt)
            {
                segment[a[levelcnt-1]].w+=now-last;
            }
            while(segment[tail].x1==now&&tail<n)
            {
                k=-1;
                for(int j=0; j<levelcnt; j++)
                {
                    if( (segment[a[j]].y1 + segment[a[j]].k * (now - segment[a[j]].x1))<segment[tail].y1)k=j;
                }
                for(int j=levelcnt-1; j>k; j--)
                {
                    a[j+1]=a[j];
                }
                a[k+1]=tail;
                levelcnt++;
                tail++;
            }
            for(int j=1; j<levelcnt; j++)
            {
                if((segment[a[j]].x1==now&&segment[a[j]].y1<segment[a[j]].y2)||(segment[a[j]].x2==now&&segment[a[j]].y1>segment[a[j]].y2))
                {
                    segment[a[j]].next=a[j-1];
                    segment[a[j-1]].deg++;
                }
            }
            cnt=0;
            for(int j=0; j<levelcnt; j++)
            {
                if(segment[a[j]].x2!=now)a[cnt++]=a[j];
            }
            levelcnt=cnt;
        }
        queue <int >q;
        for(int i=0; i<n; i++)
        {
            if(!segment[i].deg)q.push(i);
        }
        while(!q.empty())
        {
            u=q.front();
            q.pop();
            v=segment[u].next;
            if(v==-1)continue;
            segment[v].deg--;
            segment[v].w+=segment[u].w;
            if(!segment[v].deg)q.push(v);
        }
        for(int i=0; i<n; i++)
        {
            ans[segment[i].num]=segment[i].w;
        }

        for(int i=0; i<n; i++)
        {
            printf("%d\n",ans[i]);
        }

    }
    return 0;
}

时间: 2024-10-13 01:42:09

POJ 1765 November Rain的相关文章

[POJ1765]November Rain

试题描述 Contemporary buildings can have very complicated roofs. If we take a vertical section of such a roof it results in a number of sloping segments. When it is raining the drops are falling down on the roof straight from the sky above. Some segments

poj 2226 Muddy Fields(二分图最小点覆盖)

B - Muddy Fields Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Practice POJ 2226 Description Rain has pummeled the cows' field, a rectangular grid of R rows and C columns (1 <= R <= 50, 1 <= C <

POJ题目分类推荐 (很好很有层次感)

著名题单,最初来源不详.直接来源:http://blog.csdn.net/a1dark/article/details/11714009 OJ上的一些水题(可用来练手和增加自信) (POJ 3299,POJ 2159,POJ 2739,POJ 1083,POJ 2262,POJ 1503,POJ 3006,POJ 2255,POJ 3094) 初期: 一.基本算法: 枚举. (POJ 1753,POJ 2965) 贪心(POJ 1328,POJ 2109,POJ 2586) 递归和分治法. 递

(最小点覆盖) poj 2226

H - Muddy Fields Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Practice POJ 2226 Description Rain has pummeled the cows' field, a rectangular grid of R rows and C columns (1 <= R <= 50, 1 <= C <

POJ 刷题指南

OJ上的一些水题(可用来练手和增加自信) (POJ 3299,POJ 2159,POJ 2739,POJ 1083,POJ 2262,POJ 1503,POJ 3006,POJ 2255,POJ 3094) 初期: 一.基本算法: 枚举. (POJ 1753,POJ 2965) 贪心(POJ 1328,POJ 2109,POJ 2586) 递归和分治法. 递推. 构造法.(POJ 3295) 模拟法.(POJ 1068,POJ 2632,POJ 1573,POJ 2993,POJ 2996) 二

串口通讯(DMA模式)

在高级语言中,I/O 流输入(input)操作一般都要求指定要读取的数据的最大长度(字节数).当接收到至少1字节.最多所指定的字节数时,函数返回. STM32 串口接收数据时,HAL API 要求指定数据长度.但无论轮询.中断或是DMA方式,都必须完整地接收到这么多字节,程序流程才继续.如何接收变长消息,我想不到特别好的实现方式.一种方式是,轮询加超时.另一种方式是,设计消息协议,使消息头为定长,且消息头内包含消息体的长度.但是,如果通讯异常,导致消息数据错误或丢失,那么,还是缺少"提前返回&q

build-web-application-with-golang学习笔记

build-web-application-with-golang 学习教程 这几周学习以上教程,仅记录一些重点难点部分. Go语言 Go语言基础 Go是一门类似C的编译型语言,但是它的编译速度非常快.这门语言的关键字总共也就二十五个: break default func interface select case defer go map struct chan else goto package switch const fallthrough if range type continue

[ES6系列-04]再也不乱“哇”了:用 let 与 const 替代 var

[原创]码路工人 Coder-Power 大家好,这里是码路工人有力量,我是码路工人,你们是力量. github-pages 博客园cnblogs 今天的内容是,关于 JavaScript 中定义变量的变化(其实不确切,函数,常量表示被冷落). 首先,回顾下 var 定义存在的问题 1. 哇..var 好乱.. 1.1 可以重复定义 /* eg.0 * multi-definition of var-variable */ //----------------------------------

Go基础(七):接口

interface Go 语言里面设计最精妙的应该算 interface,它让面向对象,内容组织实现非常的方便,当你看完这一章,你就会被 interface 的巧妙设计所折服. 什么是 interface 简单的说,interface 是一组 method 签名的组合,我们通过 interface 来定义对象的一组行为. 我们前面一章最后一个例子中 Student 和 Employee 都能 SayHi,虽然他们的内部实现不一样,但是那不重要,重要的是他们都能 say hi 让我们来继续做更多的