Time Limit:1000MS    Memory Limit:65536KB    64bit IO Format:%I64d & %I64u

Description

The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral posters at all places at their whim. The city council has finally decided to build an electoral
wall for placing the posters and introduce the following rules:

  • Every candidate can place exactly one poster on the wall.
  • All posters are of the same height equal to the height of the wall; the width of a poster can be any integer number of bytes (byte is the unit of length in Bytetown).
  • The wall is divided into segments and the width of each segment is one byte.
  • Each poster must completely cover a contiguous number of wall segments.

They have built a wall 10000000 bytes long (such that there is enough place for all candidates). When the electoral campaign was restarted, the candidates were placing their posters on the wall and their posters differed widely in width. Moreover, the candidates
started placing their posters on wall segments already occupied by other posters. Everyone in Bytetown was curious whose posters will be visible (entirely or in part) on the last day before elections.


Your task is to find the number of visible posters when all the posters are placed given the information about posters' size, their place and order of placement on the electoral wall.

Input

The first line of input contains a number c giving the number of cases that follow. The first line of data for a single case contains number 1 <= n <= 10000. The subsequent n lines describe the posters in the order in which they
were placed. The i-th line among the n lines contains two integer numbers l
i
and ri which are the number of the wall segment occupied by the left end and the right end of the i-th poster, respectively. We know that for each 1 <= i <= n, 1 <= l
i <= ri <= 10000000. After the i-th poster is placed, it entirely covers all wall segments numbered l
i, l i+1 ,... , ri.

Output

For each input data set print the number of visible posters after all the posters are placed.




The picture below illustrates the case of the sample input.

Sample Input

1
5
1 4
2 6
8 10
3 4
7 10

Sample Output

4

開始没有离散化处理导致内存超了,离散化就过了。。。。

/*************************************************************************
> File Name: B.cpp
> Author: acvcla
> QQ: 1319132622
> Mail: acvcla@gmail.com
> Created Time: 2014年10月04日 星期六 16时24分37秒
************************************************************************/
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<vector>
#include<cstring>
#include<map>
#include<queue>
#include<stack>
#include<string>
#include<cstdlib>
#include<ctime>
#include<set>
#include<math.h>
using namespace std;
typedef long long LL;
const int maxn = 1e5 + 10;
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define pb push_back
short int col[maxn<<3];
bool v[maxn<<2];
int ll[maxn],rr[maxn],ttp[maxn<<3];
void push_down(int o){
if(col[o]!=-1){
col[o<<1]=col[o<<1|1]=col[o];
col[o]=-1;
}
}
void push_up(int o){
if(col[o<<1]==col[o<<1|1])col[o]=col[o<<1];
else col[o]=-1;
}
int ql,qr,x;
void built(int o,int l,int r)
{
col[o]=0;
if(l==r)return;
int M=(l+r)>>1;
built(o<<1,l,M);
built(o<<1|1,M+1,r);
}
void Modify(int o,int l,int r){
if(ql<=l&&qr>=r){
col[o]=x;
return;
}
int M=(l+r)>>1;
push_down(o);
if(ql<=M)Modify(o<<1,l,M);
if(qr>M)Modify(o<<1|1,M+1,r);
push_up(o);
}
int query(int o,int l,int r){
if(col[o]!=-1){
if(!col[o]||v[col[o]])return 0;
else{
v[col[o]]=true;
return 1;
}
}
if(l==r)return 0;
int M=(l+r)>>1;
push_down(o);
return query(o<<1,l,M)+query(o<<1|1,M+1,r);
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int n,T;cin>>T;
while(T--){
x=0;
cin>>n;
memset(v,0,sizeof v);
int cnt=0;
for(int i=1;i<=n;i++){
cin>>ll[i]>>rr[i];
ttp[++cnt]=ll[i];
ttp[++cnt]=rr[i];
}
sort(ttp+1,ttp+1+cnt);
cnt=unique(ttp+1,ttp+1+cnt)-ttp;
int t=cnt;
for(int i=1;i<t;i++)
{
if(ttp[i]+1!=ttp[i+1])ttp[++cnt]=ttp[i]+1;
}
sort(ttp+1,ttp+1+cnt);
built(1,1,cnt);
for(int i=1;i<=n;i++){
x=i;
ql=lower_bound(ttp+1,ttp+1+cnt,ll[i])-ttp;
qr=lower_bound(ttp+1,ttp+1+cnt,rr[i])-ttp;
Modify(1,1,cnt);
}
cout<<query(1,1,cnt)<<endl;
}
return 0;
}

版权声明:本文博客原创文章。博客,未经同意,不得转载。

POJ 2528 QAQ段树+分离的更多相关文章

  1. poj 2528 (线段树+离散化)

    poj 2528 For each input data set print the number of visible posters after all the posters are place ...

  2. hdu4288 Coder(段树+分离)

    主题链接: huangjing 题意: 题目中给了三个操作 1:add x 就是把x插进去  2:delete x 就是把x删除 3:sum 就是求下标%5=3的元素的和. 另一个条件是插入和删除最后 ...

  3. poj 2528 (线段树+特殊离散化)

    Mayor's posters Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 51098   Accepted: 14788 ...

  4. POJ 2528(线段树+离散化+特殊离散化)网上博客很少有人真正写对!!! 是POJ数据太水...

    Description The citizens of Bytetown, AB, could not stand that the candidates in the mayoral electio ...

  5. D - Mayor's posters POJ - 2528 离散化+线段树 区间修改单点查询

    题意 贴海报 最后可以看到多少海报 思路 :离散化大区间  其中[1,4] [5,6]不能离散化成[1,2] [2,3]因为这样破坏了他们的非相邻关系 每次离散化区间 [x,y]时  把y+1点也加入 ...

  6. poj 2528 线段树区间修改+离散化

    Mayor's posters POJ 2528 传送门 线段树区间修改加离散化 #include <cstdio> #include <iostream> #include ...

  7. POJ 2528 Mayor’s posters (线段树段替换 && 离散化)

    题意 : 在墙上贴海报, n(n<=10000)个人依次贴海报,给出每张海报所贴的范围li,ri(1<=li<=ri<=10000000).求出最后还能看见多少张海报. 分析 ...

  8. POJ 2528——Mayor's posters——————【线段树区间替换、找存在的不同区间】

    Mayor's posters Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Sub ...

  9. poj 2528 Mayor's posters(线段树+离散化)

    /* poj 2528 Mayor's posters 线段树 + 离散化 离散化的理解: 给你一系列的正整数, 例如 1, 4 , 100, 1000000000, 如果利用线段树求解的话,很明显 ...

随机推荐

  1. C++模板:二分查找

    bool find(int x,int l,int r){ if(l>r)return false; int mid=(l+r)/2; if(s[mid]==x) return true; el ...

  2. JSTL与EL(转)

    基本使用                   <c:forEach items="${deptList}" var="dept">  <div ...

  3. hdoj 2896 病毒侵袭(AC自动机)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2896 思路分析:题目为模式匹配问题,对于一个给定的字符串,判断能匹配多少个模式:该问题需要静态建树,另 ...

  4. Phone List(字典树)

    Phone List Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 25709   Accepted: 7785 Descr ...

  5. [置顶] WEBSOKET服务器搭建

    简单介绍一下tomcat的webSocketAPI使用: 在这里啰嗦几句:[ 很多朋友听说webSocket不知道是什么.知道是什么不知道怎么用,知道怎么用不知道具体实现.其实我当初也是这样. 实际上 ...

  6. nodejs学习笔记_nodejs和PHP在基础架构上的差别--共享状态的并发

    绝大多数对于Node.js的讨论都把关注点放在了处理高并发能力上,做开发的时候一定要明确node内部做出的权衡,以及node应用性能好的原因. node 为javascript引入了一个复杂的概念,: ...

  7. 用nodejs安装hexo,将hexo部署到github

    跌跌撞撞写这篇博文,希望下一篇可以好点 运行环境:最新版本的nodejs + git 安装好nodejs 和 git ,注册好github账号,新建仓库****.github.io(****为gith ...

  8. ASP.NET上传文件的三种基本方法

    ASP.NET依托.net framework类库,封装了大量的功能,使得上传文件非常简单,主要有以下三种基本方法. 方法一:用Web控件FileUpload,上传到网站根目录. Test.aspx关 ...

  9. js正则表达式验证字符长度

    原理,就是把一个汉字替换为两个字母,来实现长度验证. //js正则验证字符长度 第一种:直接输出长度 alert('1sS#符'.replace(/[^\x00-\xff]/g, 'AA').leng ...

  10. DevExpress ASP.NET 使用经验谈(8)-ASPxGridView自定义列和基本事件

    为演示本节示例,我们在原来Users表增加[性别Gender].[兴趣爱好Hobbies],[CreateTime创建时间],[ModifyTime]修改时间这4个字段, ALTER TABLE [d ...