树状数组 数星星 #10114. 「一本通 4.1 例 2」数星星 Stars Ural 1028

其实是道巧妙的题,如果你想到了的话。。。

每一颗星星需要统计它的左下方的星星个数。

我们发现题目是按照纵坐标从小到大输入的,对于相同的纵坐标是按照横坐标从小到大输入。

也就是说,我们可以不管纵坐标,按照它给出的横坐标依次插入,并统计当前星星之前的横坐标小于它的星星个数。

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#define N 15006
#define X 32006 

using namespace std;

inline int wread(){
	char c(getchar ());int wans(0),flag(1);
	while (c<'0' || c>'9'){if (c=='-') flag=-1;c=getchar ();}
	while (c>='0' && c<='9'){wans=wans*10+c-'0';c=getchar ();}
	return wans*=flag;
}

inline void OUT (int x){
	if (x>9)	OUT (x/10);
	putchar (x%10+'0');
}

inline void init (){
	freopen (" ","r",stdin);
	freopen (" ","w",stdout);
}

int n;
int s[X];
int pr[N];

inline int lowbit (int x){return x&(-x);}

inline void add (int pos){
	while (pos<=X-5){
		s[pos] += 1;
		pos += lowbit (pos);
	}
}

inline int fnd (int pos){
	int res(0);
	while (pos>=1){
		res += s[pos];
		pos -= lowbit (pos);
	}
	return res;
}

int main (){
//	init ();
	n=wread();
	for (int i(1);i<=n;++i){
		int x(wread()),y(wread());
		x++;
		pr[fnd (x)]++;
		add(x);
	}
	for (int i(0);i<n;++i){
		printf("%d\n",pr[i]);
	}
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值