牛客练习赛4A题(离散化+二维偏序)

题目链接

https://ac.nowcoder.com/acm/contest/16/A?

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
const int maxn = 1e5+20;
#define lowbit(x)  x&(-x)
using namespace std;

int n,c[maxn],sum[maxn];
struct node{
    int x;
    int y;
    bool operator<(const node &a){
        return x < a.x;
    }
}e[maxn];

void update(int x){
    while(x < maxn){
        sum[x]++;
        x += lowbit(x);
    }
}

int get_sum(int x){
    int ans = 0;
    while(x >= 1){
        ans += sum[x];
        x -= lowbit(x);
    }
    return ans;
}

int main(){
    while(~scanf("%d",&n)){
        for(int i = 1 ; i <= n ; i++){
            scanf("%d%d",&e[i].x,&e[i].y);
            c[i] = e[i].y;//为了离散化e[i].y
        }
        sort(c + 1, c + 1 + n);
        int cnt = unique(c + 1 , c + 1 + n) - (c + 1);
        for(int i = 1 ; i <= n ; i++){
            e[i].y = lower_bound(c + 1, c + 1 + cnt,e[i].y) - c;
        }
        sort(e + 1, e + 1 + n);
        int ans = 0;
        for(int i = n ; i >= 1 ; i--){
            int pp = get_sum(e[i].y);
            if(n - i - pp > 0)  ans++; 
            /*判断当前这个数,在树状数组里面找有没有比它大的,如果有的话,那么n-i-pp必大于0;设想一下,假设没有的话,那么
            前面已经判断的数就会更新当前这个值的sum值。emmmmm,我表达不好,有问题请Q我:1150057360
            */
            update(e[i].y);
        }
        printf("%d\n",ans);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值