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

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 li 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 <= li <= ri <= 10000000. After the i-th poster is placed, it entirely covers all wall segments numbered li, li+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

思路:
很经典的题。。线段树+离散化,难点主要在于需要用特殊的离散化方法,一般的离散化方法会出错
比如下面这串数据
3
1-10
1-4
6-10
一般离散化后就会变成 a[0] = 1;a[1] = 4;a[2] = 6;a[3]= 10;
离散化将把这些数据的下标作为值放进线段树处理后就会成为:
0 - 3 为1颜色
0 - 1 为2颜色
2 - 3 为3颜色
最后只存在两种颜色
但正确的过程应该是:
1 - 10 为1颜色
1 - 4 为2颜色
6 - 10 为3颜色
最后存在三种颜色 实现代码:
#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
#define ll long long
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define mid int m = (l + r) >> 1
const int M = 2e5+;
int col[M<<],Hash[M<<],cnt,a[M],l[M],r[M];
void pushdown(int rt){
if(col[rt]!=-){
col[rt<<] = col[rt<<|] = col[rt];
col[rt] = -;
}
} void update(int L,int R,int c,int l,int r,int rt){
if(L <= l&&R >= r){
col[rt] = c;
return ;
}
pushdown(rt);
mid;
if(L <= m) update(L,R,c,lson);
if(R > m) update(L,R,c,rson);
} void query(int l,int r,int rt){
if(col[rt]!=-){
if(Hash[col[rt]]==) cnt++;
Hash[col[rt]] = ;
return ;
}
if(l == r) return;
mid;
query(lson);
query(rson);
} int bin(int key,int n,int a[]){
int l = ,r = n-;
while(l <= r){
mid;
if(a[m] == key) return m;
else if(a[m] < key) l = m+;
else r = m-;
}
return -;
}
int main()
{
ios::sync_with_stdio();
cin.tie(); cout.tie();
int t,n;
cin>>t;
while(t--){
cin>>n;
memset(col,-,sizeof(col));
memset(Hash,,sizeof(Hash));
int nn = ;
cnt = ;
for(int i = ;i < n;i++){
cin>>l[i]>>r[i];
a[nn++] = l[i];a[nn++] = r[i];
}
sort(a,a+nn);
int m = ;
for(int i = ;i < nn;i ++){
if(a[i]!=a[i-]) a[m++] = a[i];
}
for(int i = m-;i > ;i --){
if(a[i]!=a[i-]+) a[m++] = a[i] + ;
}
sort(a,a+m);
for(int i = ;i < n;i ++){
int li = bin(l[i],m,a);
int ri = bin(r[i],m,a);
update(li,ri,i,,m,);
}
query(,m,);
cout<<cnt<<endl;
}
}

最新文章

  1. vim as python IDE
  2. 转发 win7+iis7.5+asp.net下 CS0016: 未能写入输出文件“c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files 解决方案
  3. this.down和this.up用法
  4. PHP 小方法之 算生日
  5. MyEclipse的 at com.genuitec.eclipse.ast.deploy.core.Deployment.&lt;init&gt;错误解决办法
  6. hdu 2204 Eddy&#39;s爱好
  7. DB天气app冲刺第一天
  8. Android 读取手机某个文件夹目录及子文件夹中所有的txt文件
  9. ORACLE case when then
  10. 伪验证码(含随机验证码方法)js+css
  11. ajax上传图片chrome报错net::ERR_CONNECTION_RESET/net::ERR_CONNECTION_ABORTED
  12. iOS 检测屏幕是否锁定 &#128275; / &#128274;
  13. JAVA中Integer.valueOf, parsetInt() String.valueOf的区别和结果
  14. C# groupby 应用小技巧
  15. C#批量裁剪图片
  16. PyQT5 No module named ‘PyQt5.QtWebEngineWidgets’
  17. bzoj1644 / P1649 [USACO07OCT]障碍路线Obstacle Course
  18. 9.MVC模式 -- 改造源代码
  19. Data Guard 介绍
  20. 使用android studio检测app内存泄漏【转载】

热门文章

  1. 页签中加按钮 odoo里面
  2. JS设置cookie、读取cookie、删除cookie(转载)
  3. currentBackgroundImage:获取按钮背景图片
  4. 20155207 实验5 MSF基础应用
  5. WPF的Style的TargetType不同写法的异同
  6. HTML基础之DOM操作
  7. CSS 中 calc() 函数用法
  8. Please restart this script from an administrative PowerShell
  9. python高并发和多线程的关系
  10. 重置Oracle配置