Hdu-2353 Stars

[题目链接]

思路:刚看树状数组,以为这题需要二维维护,当看到评论区大佬提醒y坐标可以不要的!就明白啦~

代码:

#include
#include
#include
#include
using namespace std;
const int Max_n=1e5+10;

int n;
int c[Max_n],k[Max_n];

int lowbit(int k){
    return k&-k;
}

void update(int k,int val){
    while(k1;
        k+=lowbit(k);
    }
}

int query(int k){
    int ans=0;
    while(k>0){
        ans+=c[k];
        k-=lowbit(k);
    }
    return ans;
}

int main()
{
    scanf("%d",&n);
    int x,y;
    memset(c,0,sizeof(c));
    memset(k,0,sizeof(k));
    for(int i=1;i<=n;i++){
        scanf("%d%d",&x,&y);
        x++; //x=0时 update操作会死循环
        k[query(x)]++;
        update(x,1);
    }
    for(int i=0;iprintf("%d\n",k[i]);
    return 0;
}

你可能感兴趣的:(Acm--数据结构,树状数组)