D - Mayor's posters(离散化)

离散化+线段树


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

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn=100010;
int n;
struct edge{
   
    int l;
    int r;
}e[maxn<<2];
int ans;
struct node{
   
    int l;
    int r;
    int laz;
    int val;
}tree[maxn<<2];
int vis[maxn<<2];
int pos[maxn][2],a[maxn<<2];
int casen;
void build(int l,int r,int cur){
   
    tree[cur].l=l;
    tree[cur].r=r;
    tree[cur].val=0;
    if(l==r)
        return;
    int mid=(l+r)/2;
    build(l,mid,cur<<1);
    build(mid+1,r,cur<<1|1);
}
void pushdown(int cur){
   
    if(tree[cur].val!=0){
   	
        tree[cur<<1].val=tree[cur<<1|1].val=tree[cur].val;
        tree[cur].val=0;
    }
    return;
}
void update(int pl,int pr,int cur,int color)
{
   
    if(pl<=tree[cur].l&&tree[cur].r<=pr){
   
        tree[cur].val=color;
        return;
    }
    pushdown(cur);
    int mid=(tree[cur].l+tree[cur].r)/2;
    if(pl<=mid)
        update(pl,pr,cur<<1,color);
    if(pr>mid)
        update(pl,pr,cur<<1|1,color);
}
void query(int cur){
   
    if(tree[cur].val!=0){
   	
        if(!vis[tree[cur].val]){
   
            vis[tree[cur].val]=1;
            ans++;
        }
        return;
    }
    query(cur<<1);
    query(cur<<1|1);
}
int main(){
   
    cin>>casen;
    while(casen--){
   
        memset(vis,0,sizeof(vis));
        memset(a,0,sizeof(a));
        memset(pos,0,sizeof(pos));
        scanf("%d",&n);
        int id=0;
        for(int i=1;i<=n;i++){
   
              scanf("%d%d",&pos[i][0],&pos[i][1]);
              a[++id]=pos[i][0];
              a[++id]=pos[i][1];
        }
        sort(a+1,a+id+1);
        int cnt=1;
        for(int i=2;i<=id;i++){
   
            if(a[i]!=a[i-1]){
   
                a[++cnt]=a[i];
            }
        }
        ans=0;
        int R=0;
        for(int i=1;i<=n;i++){
   
            int ul=lower_bound(a+1,a+1+cnt,pos[i][0])-a;
            int ur=lower_bound(a+1,a+1+cnt,pos[i][1])-a;
            e[i].l=ul;
            e[i].r=ur;
            R=max(R,e[i].r);
        }
        build(1,R,1);
        for(int i=1;i<=n;i++){
   
            update(e[i].l,e[i].r,1,i);
        }
        query(1);
        printf("%d\n",ans);
    }
return 0;
}
全部评论

相关推荐

Hyh_111:像这种hr就不用管了,基本没啥实力,换一个吧
点赞 评论 收藏
分享
xiaolihuam...:当然还有一种情况是你多次一面挂,并且挂的原因都比较类似,例如每次都是算法题写不出来。面试官给你的评价大概率是算法能力有待加强,算法能力有待提高,基础知识掌握的不错,项目过关,但是coding要加强。短期内高强度面试并且每次都是因为同样的原因挂(这个你自己肯定很清楚),会形成刻板印象,因为你偶尔一次算法写不出来,面试官自己也能理解,因为他清楚的知道自己出去面试也不一定每一次面试算法都能写出来。但是连续几次他发现你的面屏里面都是算法有问题,他就认为这不是运气问题,而是能力问题,这种就是很客观的评价形成了刻白印象,所以你要保证自己。至少不能连续几次面试犯同样的错。算法这个东西比较难保证,但是有些东西是可以的,例如某一轮你挂的时候是因为数据库的索引,这个知识点答的不好,那你就要把数据库整体系统性的复习,下一轮面试你可以,项目打的不好,可以消息队列答的不好,但是绝对不可以数据库再答的不好了。当然事实上对于任何面试都应该这样查漏补缺,只是对于字节来说这个格外重要,有些面试官真的会问之前面试官问过的问题
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务