【线段树+离散化】POJ2528-Mayor's posters
【题目大意】
在墙上贴海报,问最后能看到几张海报?
【注意点】
1.首先要注意这是段线段树,而非点线段树。读题的时候注意观察图。来看discuss区下面这组数据:
3
5 6
4 5
6 8
上面数据的答案应该是2,注意观察图,覆盖的是区间。
2.离散化
由于覆盖的是区间,不能简单的离散化,否则会出现差错。比如说下面这组数据:
1 5
1 3
4 5
以及
1 5
1 2
4 5
如果简单离散化都会变成:
1 4
1 2
3 4
最后得出只能看到两张海报的结论,而事实上第一组数据中能够看到三张海报,为了解决这个问题,如果相邻两个数之间相差大于1,就补上一个中间的数字。
比如说1 4,离散化成为1 2 3
3.数据范围:线段树要开到<<4,至于为什么还没有研究出来。X要开到三倍,因为不仅要考虑左右边界均放进来,而且还要考虑中间增添上来离散化的数字。
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
/*define后面绝对不能加分号*/
using namespace std;
const int MAXN=+;
int l[MAXN],r[MAXN];
int X[MAXN*],t,M;
int col[MAXN<<];
int hash[MAXN];
/*延迟标记当前区域被编号为几的覆盖*/
int ans; void pushdown(int rt)
{
if (col[rt]!=-)
{
col[rt<<]=col[rt];
col[rt<<|]=col[rt];
col[rt]=-;
}
} int Bin(int key)
{
int ub=,lb=M+;
while (lb>ub)
{
int m=(ub+lb)/;
if (X[m]==key) return m;
if (X[m]>key) lb=m;
else (ub=m);
}
return -;
} void update(int L,int R,int l,int r,int rt,int cit)
{
if (L<=l && r<=R)
{
col[rt]=cit;
return;
}
pushdown(rt);
int m=(l+r)>>;
if (L <= m) update(L,R,lson,cit);
if (m < R) update(L,R,rson,cit);
} void query(int l,int r,int rt)
{
if (col[rt]!=-)
{
if (hash[col[rt]]!=) ans++;
hash[col[rt]]=;
return;
}
if (l==r) return;
int m=(l+r)>>;
query(lson);
query(rson);
} void init()
/*输入数据并进行离散化*/
{
int num=;
scanf("%d",&t);
for (int i=;i<t;i++)
{
scanf("%d%d",&l[i],&r[i]);
X[++num]=l[i];
X[++num]=r[i];
}
sort(X+,X+num+);
/*M来记录离散化之后总共出现了几个数字*/
M=;
/*注意因为下面的for循环是从2开始的,所以m的初始值要是1,否则第一个数字会被覆盖掉*/
for (int i=;i<=num;i++)
{
if (X[i]!=X[i-]) X[++M]=X[i];
/*重复的数字只记录一次*/
}
num=M;
for (int i=;i<=num;i++)
{
if (X[i]-X[i-]>) X[++M]=X[i]-;
/*离散化时要注意,如果两个点相差大于1,则在中间再插入一个数字*/
}
sort(X+,X+M+);
} void submain()
{
memset(col,-,sizeof(col));
for (int i=;i<t;i++)
{
int lp=Bin(l[i]);
int rp=Bin(r[i]);
update(lp,rp,,M,,i);
/*二分查找左边界和右边界离散化后对应的数值*/
}
} int main()
{
int T;
scanf("%d",&T);
for (int kase=;kase<T;kase++)
{
init();
submain();
ans=;
memset(hash,,sizeof(hash));
query(,M,);
cout<<ans<<endl;
}
return ;
}
【线段树+离散化】POJ2528-Mayor's posters的更多相关文章
- Mayor's posters(线段树+离散化POJ2528)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 51175 Accepted: 14820 Des ...
- 线段树---poj2528 Mayor’s posters【成段替换|离散化】
poj2528 Mayor's posters 题意:在墙上贴海报,海报可以互相覆盖,问最后可以看见几张海报 思路:这题数据范围很大,直接搞超时+超内存,需要离散化: 离散化简单的来说就是只取我们需要 ...
- poj-----(2528)Mayor's posters(线段树区间更新及区间统计+离散化)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 43507 Accepted: 12693 ...
- [POJ2528]Mayor's posters(离散化+线段树)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 70365 Accepted: 20306 ...
- [poj2528] Mayor's posters (线段树+离散化)
线段树 + 离散化 Description The citizens of Bytetown, AB, could not stand that the candidates in the mayor ...
- POJ 2528 Mayor's posters(线段树+离散化)
Mayor's posters 转载自:http://blog.csdn.net/winddreams/article/details/38443761 [题目链接]Mayor's posters [ ...
- poj 2528 Mayor's posters(线段树+离散化)
/* poj 2528 Mayor's posters 线段树 + 离散化 离散化的理解: 给你一系列的正整数, 例如 1, 4 , 100, 1000000000, 如果利用线段树求解的话,很明显 ...
- poj 2528 Mayor's posters 线段树+离散化技巧
poj 2528 Mayor's posters 题目链接: http://poj.org/problem?id=2528 思路: 线段树+离散化技巧(这里的离散化需要注意一下啊,题目数据弱看不出来) ...
- Mayor's posters (线段树+离散化)
Mayor's posters Description The citizens of Bytetown, AB, could not stand that the candidates in the ...
随机推荐
- node.js 开发命令行工具 发布npm包
新建一个文件夹“nodecmd”: 在nodecmd下新建文件夹bin: 在bin文件夹下新建JavaScript文件hello.js #!/usr/bin/env node console.log( ...
- 腻子脚本polyfill
腻子脚本 具体是指一段可以给老版本浏览器(ie9以前的版本)带来新特性的javascript脚本代码.如轻量级的脚本代码或Modernizr,Modernizr除了能让ie支持html5新元素之外,还 ...
- LCD实验学习笔记(十):TFT LCD
硬件组成: REGBANK是LCD控制寄存器组,含17个寄存器及一块256*16的调色板,用来设置参数. LCDCDMA中有两个FIFO,当FIFO空或数据减少到阈值,自动发起DMA传输,从内存获取图 ...
- 2017-2018-1 20179205《Linux内核原理与设计》第四周作业
<Linux内核原理与分析> 视频学习及实验操作 Linux内核源代码 视频中提到了三个我们要重点专注的目录下的代码,一个是arch目录下的x86,支持不同cpu体系架构的源代码:第二个是 ...
- linux中的tasklet机制【转】
转自:http://blog.csdn.net/yasin_lee/article/details/12999099 转自: http://www.kerneltravel.net/?p=143 中断 ...
- 下载 LFS所需要的源码包的脚本程序及检验方法
下载 LFS所需要的源码包的脚本程序及检验方法 http://blog.csdn.net/yygydjkthh/article/details/45315143
- 从LFS官方文档构建完整Linux系统
从LFS官方文档构建完整Linux系统 http://www.cnblogs.com/sonofdark/p/4962609.html 这不是新手教程!!! Parallels Desktop (为防 ...
- 2017多校第8场 HDU 6133 Army Formations 线段树合并
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6133 题意:给你一棵n个节点的二叉树,每个节点有一个提交任务的时间,每个节点总的提交任务的罚时为:提交 ...
- 在Xcode中使用自定义的代码片段提高效率
拖动代码的时候按住option键,很难拖,注意方法:< 引用于:http://www.2cto.com/kf/201409/336245.html
- JDBC数据源连接池(4)---自定义数据源连接池
[续上文<JDBC数据源连接池(3)---Tomcat集成DBCP>] 我们已经 了解了DBCP,C3P0,以及Tomcat内置的数据源连接池,那么,这些数据源连接池是如何实现的呢?为了究 ...