Stars

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

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个坐标,这些坐标按y值从小到大给出,每个坐标的等级就是在【0,0】~【x,y】区域内点的个数,输出每个等级有多少个点
 
题解:因为y是有序的,只考虑x就可以了,所以每个点的等级就是:之前输入的坐标x(0~i)中,x的值<=x的点有几个
再用vis[]统计每个等级的点有几个即可
 

注意:航电里面的数据范围少了一个0,0<= x,y <=320000

#include<iostream>
#include<string.h>
#include<string>
#include<algorithm>
using namespace std;
int b[],vis[];
int lowbit(int x)//x的二进制表达中,从右往左第一个1所在的位置表示的数,返回的是这个数的十进制数
{
return x&(-x);
}
void add(int x)
{
while(x<=)
{
b[x]++;
x=x+lowbit(x);
}
}
int getnum(int x)
{
int cnt=;
while(x>)
{
cnt=cnt+b[x];
x=x-lowbit(x);
}
return cnt;
}
int main()
{
int t,x,y;
while(~scanf("%d",&t))
{
memset(vis,,sizeof(vis));
memset(b,,sizeof(b));
for(int i=;i<t;i++)
{
scanf("%d%d",&x,&y);
vis[getnum(x+)]++;//统计<=x的数有几个
add(x+);
}
for(int i=;i<t;i++)
printf("%d\n",vis[i]);
}
}

最新文章

  1. 04-Vue入门系列之Vue事件处理
  2. For循环语句的使用
  3. 九幽2015年Q3 WP市场份额细分报告
  4. IOS 开发文件操作——NSFileManager
  5. oracle nvl和nvl2的区别
  6. jquery &lt;li&gt;标签 隔若干行 加空白或者加虚线
  7. Ajax调用webService(一) 不跨域。
  8. unmount的时候报错
  9. 【Java学习笔记之二十五】初步认知Java内部类
  10. 学习Java第一天,大致了解
  11. Android Studio 学习(七)通知
  12. Django REST framework 第五章 Relationships &amp; Hyperlinked APIs
  13. HTML基础【5】:表单标签
  14. sql使用实例
  15. GraphQL:你的容颜,十万光年
  16. ZooKeeper分布式过程协同技术详解1——ZooKeeper的概念和基础
  17. SQL 事务与锁
  18. 【BZOJ2216】Lightning Conductor(动态规划)
  19. Commons FileUpLoad 两种上传方式解
  20. 使用Django完成CRM管理系统

热门文章

  1. mcast_set_ttl函数
  2. win10鼠标右击 新建文件夹 反应缓慢、迟钝
  3. C语言知识点记录
  4. Oracle_11g_x64的安装与完全卸载
  5. WCF全面解析之 第四讲 使用代码 部署服务
  6. java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter 可能是我们运行的java版本过高导致
  7. Python - 并发编程,多进程,多线程
  8. JS中bool值转换与比较
  9. jq基础(2)
  10. Unity2018编辑器脚本趟坑记录