POJ 2528 Mayor's posters [线段树-区间更新+离散化]【数据
题目链接:http://poj.org/problem?id=2528 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: 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. 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. 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. 1 4 Alberta Collegiate Programming Contest 2003.10.18 题目大意: 解题思路: 但是注意到
注意的是离散化后的区间应该是
附本题代码 /* memory 2104kb time 954ms */
//#include <bits/stdc++.h>
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <math.h>
#include <map>
#define abs(x) (((x)>0)?(x):-(x))
#define lalal puts("*********")
#define Rep(a,b,c) for(int a=(b);a<=(c);a++)
#define Req(a,c) for(int a=(b);a>=(c);a--)
#define Rop(a,c) for(int a=(b);a<(c);a++)
#define s1(a) scanf("%d",&a)
typedef long long int LL;
using namespace std;
const int inf = 0x3f3f3f3f;
const int MOD = 9901;
/**************************************/
const int N = 20000+5;
#define ll (rt<<1)
#define rr (rt<<1|1)
#define mid (tree[rt].m())
struct node
{
int l,r;
int lazy;
int m()
{
return (l+r)>>1;
}
int len()
{
return (r-l+1);
}
} tree[N<<2];
void build(int rt,int l,int r)
{
tree[rt].l=l,tree[rt].r=r,tree[rt].lazy=0;
if(l==r) return ;
build(ll,l,mid);
build(rr,mid+1,r);
}
void pushdown(int rt)
{
if(tree[rt].lazy)
{
tree[ll].lazy=tree[rr].lazy=tree[rt].lazy;
tree[rt].lazy=0;
}
}
void update(int rt,int L,int R,int val)
{
if(L<=tree[rt].l&&tree[rt].r<=R)
{
tree[rt].lazy=val;
return ;
}
pushdown(rt);
if(L<=mid) update(ll,L,R,val);
if(R >mid) update(rr,val);
}
int query(int rt,int R)
{
if(tree[rt].l==tree[rt].r) return tree[rt].lazy;
pushdown(rt);
if(L<=mid) return query(ll,R);
if(R> mid) return query(rr,R);
}
map<int,int >mp,mmp;
struct nod
{
int l,r;
int ind;
}b[N];
int c[N];
int main()
{
int _;
while(~s1(_))
{
while(_--)
{
mp.clear(),mmp.clear();
int n,kn=0,cnt=0,color=0;
s1(n);
int l,r;
Rep(i,1,n) s1(b[i].l),s1(b[i].r),c[i]=b[i].l,c[i+n]=b[i].r;
sort(c+1,c+n*2+1);
Rep(i,n<<1)if(0==mp[c[i]])mp[c[i]]=++kn;
build(1,kn);
Rep(i,n) update(1,mp[b[i].l],mp[b[i].r],i);
Rep(i,kn)
{
color=query(1,i,i);
if(mmp[color]==0)
mmp[color]=1,cnt++;
}
printf("%dn",cnt);
}
}
return 0;
}
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |