hdu1541 star 树状数组

HDU1541

-----------刚参加完蓝桥杯B组,好几天没做题了。对自己要求还是不严格啊!得改!!


           《star》超时了好几发,后来发现树状数组啊,数据中坐标是有0点,lowbit(0) 还有好?额。。。


             题意:给你一些(首先如果横坐标一样按纵坐标从小到大,然后按横坐标从小到大)的点,代表这个点上有star,规定某个点的左下方有几个star就定义这个点为(level几)。最后依次输出level 0~n的点。


             思路:因为y点已经是按从小到大的顺序给出,所以不用管y了,所以直接按输入的顺序更新x就好了。记录每个点的level值,一定要记得把每个x加上1或者适当加上个其他的数。。避免lowbit(0)的尴尬情况就好。


代码


#include <stdio.h>
#include <string.h>
#include <math.h>
#include <iostream>
#include <algorithm>
using namespace std;

int n;
int c[35000];
int num[15010];

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

void add(int x)
{
    while (x <= 35000)
    {
        c[x]++;
        x += lowbit(x);
    }
}

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

int main()
{
    while (scanf("%d", &n) == 1)
    {
        int l, r, i;
        memset(c, 0, sizeof c);
        memset(num, 0, sizeof num);
        for (i = 0; i < n; i++)
        {
            scanf("%d%d", &l, &r);
            num[sum(++l)]++;
            add(l);
        }
        for (i = 0; i < n; i++)
        printf("%d\n", num[i]);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值