Stars

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

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
 
Source
 
题意:
给出N个星星的坐标,给出顺序是先按Y从小到大,后按X从小到大。问在某颗星星的左下方分别有0,1,2,.....n-1颗星星的星星坐标有几个,例如上面左下方有0课星星的有1号这一个,左下方有1颗星星的有2号和4号这两个。
代码:
 //坑爹的题,竟然已经按y,x排好序了,本想用二维树状数组。坑爹这题竟然ac了之后才有思路,首先按y排好序右安x值排好序了这样
//只需要每输入一个算一个就行,因为y相同的不用解释,y不同的后输入的Y大于前面的,X值同样也大于他左边的。
#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
int A[];
int lowbit(int x)
{
return x&(-x);
}
void add(int idx)
{
for(int i=idx;i<=;i+=lowbit(i))
A[i]++;
}
int sum(int idx)
{
int s=;
for(int i=idx;i>;i-=lowbit(i))
s+=A[i];
return s;
}
int main()
{
int n,a,b,c,cnt,t;
int ans[];
while(scanf("%d",&n)!=EOF)
{
memset(A,,sizeof(A));
memset(ans,,sizeof(ans));
for(int i=;i<=n;i++)
{
scanf("%d%d",&a,&b);
add(a+);
ans[sum(a+)]++; }
for(int i=;i<=n;i++)
printf("%d\n",ans[i]);
}
return ;
}

最新文章

  1. TFS二次开发系列:八、TFS二次开发的数据统计以PBI、Bug、Sprint等为例(二)
  2. 【转】跟我学Kafka之NIO通信机制
  3. [译]AngularJS Service vs Factory - Once and for all
  4. codeforces 490C. Hacking Cypher 解题报告
  5. ZooKeeper 编程(一)
  6. screen命令学习
  7. M1-S70卡片介绍
  8. Reverse Integer ---- LeetCode 007
  9. linux中mail函数不能发送邮件
  10. .NET开发工具
  11. Java中的异常处理(一)
  12. Oracle 闪回表实验
  13. 常用的免费Webservice接口
  14. 【转】 Vim多行缩进及高级命令
  15. 51nod-1445-变色DNA(最短路)
  16. PageHelper在Mybatis中的使用
  17. React-router4 第七篇 Recursive Paths 递归路径
  18. WebSphere隐藏版本号教程
  19. Android设备管理器漏洞(转)
  20. ISO七层协议

热门文章

  1. nginx:413 Request Entity Too Large 及 修改 PHP上传文件大小配置
  2. Windows下memcached.exe的安装与配置
  3. 交叉编译中的build、host和target
  4. AC自动机
  5. linux——常用命令与脚本
  6. 各种浏览器的Hack写法(chrome firefox ie等)
  7. 摇一摇js 实现
  8. 读取properties文件方式
  9. Java中的位运算
  10. eclipse远程连接hive