博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BZOJ 1645: [Usaco2007 Open]City Horizon 城市地平线 扫描线 + 线段树 + 离散化
阅读量:5111 次
发布时间:2019-06-13

本文共 2166 字,大约阅读时间需要 7 分钟。

Description

Farmer John has taken his cows on a trip to the city! As the sun sets, the cows gaze at the city horizon and observe the beautiful silhouettes formed by the rectangular buildings. The entire horizon is represented by a number line with N (1 <= N <= 40,000) buildings. Building i's silhouette has a base that spans locations A_i through B_i along the horizon (1 <= A_i < B_i <= 1,000,000,000) and has height H_i (1 <= H_i <= 1,000,000,000). Determine the area, in square units, of the aggregate silhouette formed by all N buildings.

N个矩形块,交求面积并.

Input

* Line 1: A single integer: N

* Lines 2..N+1: Input line i+1 describes building i with three space-separated integers: A_i, B_i, and H_i

Output

* Line 1: The total area, in square units, of the silhouettes formed by all N buildings

#include
#include
#include
#define maxn 1030000 #define inf 300000 #define ll long long using namespace std;void setIO(string s){ string in=s+".in"; freopen(in.c_str(),"r",stdin); }ll Arr[maxn]; namespace tr{ #define mid ((l+r)>>1) #define lson t[x].l #define rson t[x].r struct Node { int l,r,sum; ll len; }t[maxn<<2]; int tot; int newnode(){ return ++tot; } void pushup(int x,int l,int r) { if(t[x].sum) { t[x].len=Arr[r]-Arr[l-1]; } else { t[x].len=t[lson].len+t[rson].len; } } // 应为 > L (左面是开的) void Update(int &x,int l,int r,int L,int R,int v) { if(!x) x = newnode(); if(l>=L&&r<=R) { t[x].sum+=v; pushup(x,l,r); return; } if(L<=mid) Update(lson,l,mid,L,R,v); if(R>mid) Update(rson,mid+1,r,L,R,v); pushup(x,l,r); } void re() { for(int i=0;i<=tot;++i) t[tot].l=t[tot].r=t[tot].sum=t[tot].len=0; tot=0; }}; struct Edge{ ll l,r,h; int L,R; int flag; }edges[maxn]; bool cmp(Edge a,Edge b){ return a.h==b.h?a.flag>b.flag:a.h

  

转载于:https://www.cnblogs.com/guangheli/p/11050685.html

你可能感兴趣的文章
Jzoj4757 树上摩托
查看>>
CF992E Nastya and King-Shamans(线段树二分+思维)
查看>>
oracle 几个时间函数探究
查看>>
第一个Java Web程序
查看>>
树状数组_一维
查看>>
如果没有按照正常的先装iis后装.net的顺序,可以使用此命令重新注册一下:
查看>>
linux install ftp server
查看>>
嵌入式软件设计第8次实验报告
查看>>
算法和数据结构(三)
查看>>
Ubuntu下的eclipse安装subclipse遇到没有javahl的问题...(2天解决了)
查看>>
alter database databasename set single_user with rollback IMMEDIATE 不成功问题
查看>>
Repeater + Resources 列表 [原创][分享]
查看>>
WCF揭秘——使用AJAX+WCF服务进行页面开发
查看>>
【题解】青蛙的约会
查看>>
IO流
查看>>
mybatis调用存储过程,获取返回的游标
查看>>
设计模式之装饰模式(结构型)
查看>>
面向对象的设计原则
查看>>
Swift3.0服务端开发(三) Mustache页面模板与日志记录
查看>>
【转】 FPGA设计的四种常用思想与技巧
查看>>