(中等) HDU 3265 Posters , 扫描线。
However, Ted is such a picky guy that in every poster he finds something ugly. So before he pastes a poster on the window, he cuts a rectangular hole on that poster to remove the ugly part. Ted is also a careless guy so that some of the pasted posters may overlap when he pastes them on the window.
Ted wants to know the total area of the window covered by posters. Now it is your job to figure it out.
To make your job easier, we assume that the window is a rectangle located in a rectangular coordinate system. The window’s bottom-left corner is at position (0, 0) and top-right corner is at position (50000, 50000). The edges of the window, the edges of the posters and the edges of the holes on the posters are all parallel with the coordinate axes.

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm> #define lc po*2
#define rc po*2+1
#define lson L,M,lc
#define rson M+1,R,rc using namespace std; struct BIAN
{
int x,y1,y2;
short state;
}; const int maxn=; BIAN bian[*];
int BIT[maxn*];
int COL[maxn*]; void pushUP(int L,int R,int po)
{
if(COL[po])
BIT[po]=R+-L;
else if(L==R)
BIT[po]=;
else
BIT[po]=BIT[lc]+BIT[rc];
} void update(int ul,int ur,int ut,int L,int R,int po)
{
if(ul<=L&&ur>=R)
{
COL[po]+=ut;
pushUP(L,R,po); return;
} int M=(L+R)/; if(ul<=M)
update(ul,ur,ut,lson);
if(ur>M)
update(ul,ur,ut,rson); pushUP(L,R,po);
} bool cmp(BIAN a,BIAN b)
{
return a.x<b.x;
} int main()
{
int N;
long long ans;
int x1,x2,x3,x4,y1,y2,y3,y4; while(~scanf("%d",&N))
{
if(!N)
break; memset(COL,,sizeof(COL));
memset(BIT,,sizeof(BIT));
ans=; for(int i=;i<=N;++i)
{
scanf("%d %d %d %d %d %d %d %d",&x1,&y1,&x2,&y2,&x3,&y3,&x4,&y4); bian[i*-].x=x1;
bian[i*-].y1=y1;
bian[i*-].y2=y2;
bian[i*-].state=; bian[i*-].x=x3;
bian[i*-].y1=y1;
bian[i*-].y2=y2;
bian[i*-].state=-; bian[i*-].x=x4;
bian[i*-].y1=y1;
bian[i*-].y2=y2;
bian[i*-].state=; bian[i*-].x=x2;
bian[i*-].y1=y1;
bian[i*-].y2=y2;
bian[i*-].state=-; bian[i*-].x=x3;
bian[i*-].y1=y4;
bian[i*-].y2=y2;
bian[i*-].state=; bian[i*].x=x4;
bian[i*].y1=y4;
bian[i*].y2=y2;
bian[i*].state=-; bian[i*-].x=x3;
bian[i*-].y1=y1;
bian[i*-].y2=y3;
bian[i*-].state=; bian[i*-].x=x4;
bian[i*-].y1=y1;
bian[i*-].y2=y3;
bian[i*-].state=-;
} sort(bian+,bian+*N+,cmp); for(int i=;i<=*N;++i)
{
ans+=(long long)BIT[]*(bian[i].x-bian[i-].x); if(bian[i].y2>bian[i].y1)
update(bian[i].y1,bian[i].y2-,bian[i].state,,,);
} cout<<ans<<endl;
} return ;
}
下面是学习了新的方法后做的,就是对线段树进行修改,用上pushDown,保证线段树的每一个节点的值都不会小于0。
这样直接分成两个矩形,中间那个的左边的state为-1,右边的为1.
PS:这个题在杭电上有讨论long long会wa但是unsigned int就可以的问题,其实是因为没有加强制转换导致的,long long可以ac。
代码如下:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm> #define lc po*2
#define rc po*2+1
#define lson L,M,lc
#define rson M+1,R,rc
#define ji1 i*4-3
#define ji2 i*4-2
#define ji3 i*4-1
#define ji4 i*4 using namespace std; struct BIAN
{
int x,y1,y2;
short state;
}; const int maxn=; BIAN bian[maxn*];
long long BIT[maxn*];
int COL[maxn*]; void callUP(int L,int R,int po)
{
if(COL[po]>=)
BIT[po]=R+-L;
else if(L==R)
BIT[po]=;
else
BIT[po]=BIT[lc]+BIT[rc];
} void pushUP(int L,int R,int po)
{
if(L!=R) //如果不判断会越界。
{
int temp=min(COL[lc],COL[rc]); COL[po]+=temp;
COL[lc]-=temp;
COL[rc]-=temp; callUP(L,(L+R)/,lc);
callUP((L+R)/+,R,rc);
} callUP(L,R,po);
} void pushDown(int L,int R,int po)
{
if(COL[po])
{
COL[lc]+=COL[po];
COL[rc]+=COL[po]; callUP(L,(L+R)/,lc);
callUP((L+R)/+,R,rc); COL[po]=;
callUP(L,R,po);
}
} void update(int ul,int ur,int ut,int L,int R,int po)
{
if(ul<=L&&ur>=R)
{
COL[po]+=ut;
pushUP(L,R,po); return;
} pushDown(L,R,po); int M=(L+R)/; if(ul<=M)
update(ul,ur,ut,lson);
if(ur>M)
update(ul,ur,ut,rson); pushUP(L,R,po); } bool cmp(BIAN a,BIAN b)
{
return a.x<b.x;
} int main()
{
int N;
int cas=;
long long ans;
int x1,x2,y1,y2,x3,x4,y3,y4; ios::sync_with_stdio(false);
cout.setf(ios::fixed);
cout.precision(); for(cin>>N;N;cin>>N)
{
memset(BIT,,sizeof(BIT));
memset(COL,,sizeof(COL)); for(int i=;i<=N;++i)
{
cin>>x1>>y1>>x2>>y2>>x3>>y3>>x4>>y4; bian[ji1].state=;
bian[ji2].state=-;
bian[ji3].state=-;
bian[ji4].state=; bian[ji1].x=x1;
bian[ji2].x=x2;
bian[ji3].x=x3;
bian[ji4].x=x4; bian[ji1].y1=bian[ji2].y1=y1;
bian[ji1].y2=bian[ji2].y2=y2;
bian[ji3].y1=bian[ji4].y1=y3;
bian[ji3].y2=bian[ji4].y2=y4;
} sort(bian+,bian+*N+,cmp); ans=; for(int i=;i<=*N;++i)
{
ans+=(long long)BIT[]*(bian[i].x-bian[i-].x); //要加强制转换。 update(bian[i].y1,bian[i].y2-,bian[i].state,,,);
} cout<<ans<<endl;
} return ;
}
(中等) HDU 3265 Posters , 扫描线。的更多相关文章
- HDU 3265 Posters(线段树)
HDU 3265 Posters pid=3265" target="_blank" style="">题目链接 题意:给定一些矩形海报.中间有 ...
- HDU 3265 Posters (线段树+扫描线)(面积并)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3265 给你n个中间被挖空了一个矩形的中空矩形,让你求他们的面积并. 其实一个中空矩形可以分成4个小的矩 ...
- hdu 3265 Posters(线段树+扫描线+面积并)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3265 题意:给你一张挖了洞的墙纸贴在墙上,问你总面积有多少. 挖了洞后其实就是多了几个矩形墙纸,一张墙 ...
- HDU 3265 Posters ——(线段树+扫描线)
第一次做扫描线,然后使我对线段树的理解发生了动摇= =..这个pushup写的有点神奇.代码如下: #include <stdio.h> #include <algorithm> ...
- HDU 3265 Posters
矩形面积并,一个拆成四个 #include<cstdio> #include<cstring> #include<cmath> #include<map> ...
- HDU 3511 圆扫描线
找最深的圆,输出层数 类似POJ 2932的做法 圆扫描线即可.这里要记录各个圆的层数,所以多加一个维护编号的就行了. /** @Date : 2017-10-18 18:16:52 * @FileN ...
- HDU 3265/POJ 3832 Posters(扫描线+线段树)(2009 Asia Ningbo Regional)
Description Ted has a new house with a huge window. In this big summer, Ted decides to decorate the ...
- HDU 3265 扫描线(矩形面积并变形)
Posters Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Sub ...
- (中等) HDU 1828 Picture,扫描线。
Problem Description A number of rectangular posters, photographs and other pictures of the same shap ...
随机推荐
- Hadoop RPC机制
RPC(Remote Procedure Call Protocol)远程过程调用协议,它是一种通过网络从远程计算机程序上请求服务,而不需要了解底层网络技术的协议.Hadoop底层的交互都是通过 rp ...
- ACE_Time_Value
头文件“Time_Value.h” 为了兼容各个平台的时间特性,ACE Reactor框架提供了ACE_Time_Value类.ACE_Time_Value的关键方法见下图3.2和表3.2.3.3: ...
- 视频录制SurfaceView
package com.bw.videorecorder; import java.io.File;import java.io.IOException; import android.media.M ...
- HDU - 2802 F(N) (周期)
题目链接:HDU 2009-4 Programming Contest 分析:具有一定的周期性——4018处理下就可以A了 Sample Input Sample Output AC代码: #incl ...
- 转:Selenium2.0介绍——WebDriver两种驱动浏览器的方式.
如果之前熟悉Selenium RC,理解了Selenium RC是如何工作的,那么,当第一次接触Selenium WebDriver的时候,看到WebDriver居然可以不需要指定远端服务器的IP地址 ...
- 转:使用WebDriver过程中遇到的那些问题
在做web项目的自动化端到端测试时主要使用的是Selenium WebDriver来驱动浏览器.Selenium WebDriver的优点是支持的语言多,支持的浏览器多.主流的浏览器Chrome.Fi ...
- OGG FAQ
Q1:oracle_关于参数.ENABLE_GOLDENGATE_REPLICATION A: So, in order to use OGG, on Oracle 11.2.0.4, or Or ...
- 【gcd】 最大公约数
int gcd(int a,int b) { int r; ) { r=a%b; a=b; b=r; } return a; }
- Android三种左右滑动效果 手势识别
Android三种左右滑动效果 手势识别(转) 手势识别 1.onCreate中添加GestureDetector mGestureDetector; //监听手势事件 mGestureDetec ...
- RPC远程过程调用机制底层原理