POJ 2528 QAQ段树+分离
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u
Description
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
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
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段树+分离的更多相关文章
- poj 2528 (线段树+离散化)
poj 2528 For each input data set print the number of visible posters after all the posters are place ...
- hdu4288 Coder(段树+分离)
主题链接: huangjing 题意: 题目中给了三个操作 1:add x 就是把x插进去 2:delete x 就是把x删除 3:sum 就是求下标%5=3的元素的和. 另一个条件是插入和删除最后 ...
- poj 2528 (线段树+特殊离散化)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 51098 Accepted: 14788 ...
- POJ 2528(线段树+离散化+特殊离散化)网上博客很少有人真正写对!!! 是POJ数据太水...
Description The citizens of Bytetown, AB, could not stand that the candidates in the mayoral electio ...
- D - Mayor's posters POJ - 2528 离散化+线段树 区间修改单点查询
题意 贴海报 最后可以看到多少海报 思路 :离散化大区间 其中[1,4] [5,6]不能离散化成[1,2] [2,3]因为这样破坏了他们的非相邻关系 每次离散化区间 [x,y]时 把y+1点也加入 ...
- poj 2528 线段树区间修改+离散化
Mayor's posters POJ 2528 传送门 线段树区间修改加离散化 #include <cstdio> #include <iostream> #include ...
- POJ 2528 Mayor’s posters (线段树段替换 && 离散化)
题意 : 在墙上贴海报, n(n<=10000)个人依次贴海报,给出每张海报所贴的范围li,ri(1<=li<=ri<=10000000).求出最后还能看见多少张海报. 分析 ...
- POJ 2528——Mayor's posters——————【线段树区间替换、找存在的不同区间】
Mayor's posters Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Sub ...
- poj 2528 Mayor's posters(线段树+离散化)
/* poj 2528 Mayor's posters 线段树 + 离散化 离散化的理解: 给你一系列的正整数, 例如 1, 4 , 100, 1000000000, 如果利用线段树求解的话,很明显 ...
随机推荐
- Android 通过Dom, Sax, Pull解析网络xml数据
这篇文章不是完全原创,XML解析的部分参考了 liuhe688 的文章.文章地址:http://blog.csdn.net/liuhe688/article/details/6415593 这是一个几 ...
- android LinearLayout和RelativeLayout实现精确布局
先明确几个概念的区别: padding margin:都是边距的含义,关键问题得明白是什么相对什么的边距padding:是控件的内容相对控件的边缘的边距. margin :是控件边缘相对父空间的边距 ...
- 【剑指offer】面试题43:n个骰子的点数
第一种思路是,每一个骰子的点数从最小到最大,如果为1-6,那么全部的骰子从最小1開始,我们如果一种从左向右的排列,右边的最低,索引从最低開始,推断和的情况. def setTo1(dices, sta ...
- 感觉挺有意思的SQL题目
1.有如下数据,要求查询每个班最低分和最高分,并将最高分与最低分显示为同一列 ID Student CourseName Score1 张三 English 802 张三 Math 703 张三 Ch ...
- 对象作为返回值类型&&链式编程
package com.imooc; class Student{ public void study(){ System.out.println("学生学习"); } } cla ...
- BZOJ 2015: [Usaco2010 Feb]Chocolate Giving( 最短路 )
裸最短路.. ------------------------------------------------------------------------------------ #include ...
- thinkphp第二天
1.使用print_r();打印数组的时候最好使用<pre>标签,可以是数组表现的更加直观. pre 元素可定义预格式化的文本.被包围在 pre 元素中的文本通常会保留空格和换行符.而文本 ...
- C#调用Java方法
C#调用Java方法(详细实例) 阅读目录 C#调用c++ C#调用JAVA方法 C#可以直接引用C++的DLL和转换JAVA写好的程序.最近由于工作原因接触这方面比较多,根据实际需求,我们通过一个具 ...
- AutoCAD 2013官方简体中文破解版(32 / 64位),带激活码和注册机
AutoCAD 2014下载地址:http://ideapad.zol.com.cn/61/160_603697.html 安装及破解方法:(注册机下载在下方) 1.安装Autodesk AutoCA ...
- CloudStack 物理网络架构
原文地址:http://www.shapeblue.com/cloudstack/understanding-cloudstacks-physical-networking-architecture/ ...