#Lutece0211. Stars
Stars
Migrated from Lutece 211 Stars
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
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 , and ). And the levels of the stars numbered by and are . At this map there are only one star of the level , two stars of the level , one star of the level , and one star of the level .
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 (). The following lines describe coordinates of stars (two integers and per line separated by a space, ). There can be only one star at one point of the plane. Stars are listed in ascending order of coordinate. Stars with equal coordinates are listed in ascending order of coordinate.
Output
The output should contain lines, one number per line. The first line contains amount of stars of the level , the second does amount of stars of the level and so on, the last line contains amount of stars of the level .
Samples
5
1 1
5 1
7 1
3 3
5 5
1
2
1
1
0
Note
This problem has huge input data,use scanf
instead of cin
to read data to avoid time limit exceed.
The data used in this problem is unofficial data prepared by standy. So any mistake here does not imply mistake in the offcial judge data.
Resources
Ural Collegiate Programming Contest 1999