Mayor's posters(POJ-2528 ) (线段树 离散化)

来源:互联网 发布:中国越南知乎 编辑:程序博客网 时间:2024/05/18 12:29

题目链接:http://poj.org/problem?id=2528
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
题目大意:给你一个无限长的板子,然后依次往上面贴n张等高的海报,问你最后能看到多少张海报。

思路分析:线段树区间更新问题,但是要注意,给的长度的可能非常大,有1e9,不加处理直接维护一个线段树肯定会MLE,TLE,但是我们注意到一共最多只有2e4个点,因此我们可以用离散化的思想先对区间进行预处理,所谓的离散化,在我理解看来就是将一个很大的区间映射为一个很小的区间,而不改变原有的大小覆盖关系,但是注意简单的离散化可能会出现错误,给出下面两个简单的例子应该能体现普通离散化的缺陷:

例子一:1-10 1-4 5-10
例子二:1-10 1-4 6-10

普通离散化后都变成了[1,4][1,2][3,4]
线段2覆盖了[1,2],线段3覆盖了[3,4],那么线段1是否被完全覆盖掉了呢?

例子一是完全被覆盖掉了,而例子二没有被覆盖
解决的办法则是对于距离大于1的两相邻点,中间再插入一个点,本题还用到了Lazy标记的思想
直接更新区间进行标记而先不对子节点进行处理,如果需要往下更新再将标记下传一层。

没用过这几个函数的可以看下面的链接:
unuique
lower_bound
memset

#include <iostream>#include <algorithm>#include <cstdio>#include <cstring>#include <cmath>#include <queue>using namespace std;typedef long long LL;const int N=20099;int li[N],ri[N],ans;int num[N<<2],dp[N<<4];bool book[N<<4];// -1没广告 其余广告的值从1-nvoid pushdown(int i){    if(dp[i]!=-1) //若有广告则把广告传递下去    {        dp[i*2]=dp[i];        dp[i*2+1]=dp[i];        dp[i]=-1;    }}void update(int i,int l,int r,int x,int y,int c){    if(x<=l&&y>=r)    {        dp[i]=c;//广告值覆盖;        return;    }    pushdown(i);    int mid=(l+r)>>1;    if(y<=mid) update(i*2,l,mid,x,y,c);    else if(x>mid) update(i*2+1,mid+1,r,x,y,c);    else    {        update(i*2,l,mid,x,mid,c);        update(i*2+1,mid+1,r,mid+1,y,c);    }}void f(int i, int l, int r){    if(dp[i]!=-1)    {        if(!book[dp[i]])        {            ans++;//计算出现多少种广告            book[dp[i]]=true;//将出现过的广告用book标记为true        }        return;    }    if(l==r) return;    pushdown(i);    int mid=(l+r)>>1;    f(i*2,l,mid);    f(i*2+1,mid+1,r);}int main(){    int t;    scanf("%d",&t);    while(t--)    {        memset(book,false,sizeof(book));        memset(dp,-1,sizeof(dp));        int n,k=0;        scanf("%d",&n);        for(int i=0; i<n; i++)        {            scanf("%d%d",&li[i],&ri[i]);            num[k++]=li[i];            num[k++]=ri[i];        }        sort(num,num+k);        //unique函数可以去除相邻的重复数,要先排序。返回值为不重复的最后一个数的地址;        int m=unique(num,num+k)-num; //首尾地址相减得出数组长度        k=m;        for(int i=1; i<m; i++)        {            if(num[i]-num[i-1]>1)//在每两个相差超过一的数之间插入一个数                num[k++]=num[i-1]+1;        }        sort(num,num+k);        //lower_bound函数可以查找X在数组中的位置(X>=元素)        for(int i=0; i<n; i++)        {            // 查找原区间离散化后的区间            int x=lower_bound(num,num+k,li[i])-num;            int y=lower_bound(num,num+k,ri[i])-num;            update(1,0,k-1,x,y,i);        }        ans=0;        f(1,0,k-1);        printf("%d\n",ans);    }    return 0;}
原创粉丝点击