HDU - 1541 Stars(树状数组)

本文介绍了一道关于星图统计的问题,通过使用树状数组优化查询效率,实现快速统计每个星星区域内的星星数量。文章提供了完整的代码实现,并解释了核心思路。

Stars

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7966    Accepted Submission(s): 3181


Problem Description
Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level of a star be an amount of the stars that are not higher and not to the right of the given star. Astronomers want to know the distribution of the levels of the stars. 



For example, look at the map shown on the figure above. Level of the star number 5 is equal to 3 (it's formed by three stars with a numbers 1, 2 and 4). And the levels of the stars numbered by 2 and 4 are 1. At this map there are only one star of the level 0, two stars of the level 1, one star of the level 2, and one star of the level 3. 

You are to write a program that will count the amounts of the stars of each level on a given map.
 

Input
The first line of the input file contains a number of stars N (1<=N<=15000). The following N lines describe coordinates of stars (two integers X and Y per line separated by a space, 0<=X,Y<=32000). There can be only one star at one point of the plane. Stars are listed in ascending order of Y coordinate. Stars with equal Y coordinates are listed in ascending order of X coordinate.
 

Output
The output should contain N lines, one number per line. The first line contains amount of stars of the level 0, the second does amount of stars of the level 1 and so on, the last line contains amount of stars of the level N-1.
 

Sample Input
5 1 1 5 1 7 1 3 3 5 5
 

Sample Output
1 2 1 1 0
 

题意:给定N个星星的坐标,求每个星星坐下区域内的星星个数(xi <= x && yi <= yi),不包括本身。一般方法肯定TEL,因此可以采用线段树或者树状数组进行优化查询。这里采用树状数组,具体原理可以参考下一篇博客,这里说题。

思路:题目是按照 y 值增加的顺序读入点坐标的,y相等时按x从小到大。因此我们想一下会发现,不用管y坐标,只用管x坐标。想一下在x坐标轴上,先读入的一层星星对应x轴上的N个点,后读入的y坐标肯定比先读入的大或者相等。因此肯定满足y的要求,我们只需统计该星星左边的星星有多少个即可。并加入该星星,向上更新到祖先结点。

代码:
 1 #include <iostream>
 2 #include <cstring>
 3 using namespace std;
 4 
 5 int c[32005];
 6 int ans[15005];
 7 int n;
 8 
 9 int lowbit(int x){
10     return x&(-x);
11 }
12 void add(int id,int p){
13     while(id <= 32005){     //向上更新区间到最大值,注意不是 n
14         //cout<<"check:  "<<id<<"  "<<lowbit(id)<<"  "<<c[id]<<endl;
15         c[id] += p;
16         id += lowbit(id);
17     }
18 }
19 int sum(int id){
20     int sum = 0;
21     while(id >= 1){
22         sum += c[id];
23         //cout<<"check:  "<<id<<"  "<<lowbit(id)<<endl;
24         id -= lowbit(id);
25     }
26     return sum;
27 }
28 int main()
29 {
30     ios_base::sync_with_stdio(0);
31     cin.tie(0);
32 
33     while(cin>>n){
34         int x,y;
35         memset(ans,0,sizeof(ans));
36         memset(c,0,sizeof(c));
37         for(int i = 1;i <= n;i ++){
38             cin>>x>>y;
39 
40             int res = sum(x+1);
41             ans[res]++;
42             add(x+1,1);
43         }
44         for(int i = 0;i < n;i ++)
45             cout<<ans[i]<<endl;
46     }
47     return 0;
48 }
View Code

 

转载于:https://www.cnblogs.com/Jstyle-continue/p/6351930.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值