Parade

TimeLimit:2000MS  MemoryLimit:64MB
64-bit integer IO format:%I64d
未提交 | 登录后收藏
Problem Description

No Great Victory anniversary in Berland has ever passed without the war parade. This year is not an exception. That’s why the preparations are on in full strength. Tanks are building a line, artillery mounts are ready to fire, soldiers are marching on the main square... And the air forces general Mr. Generalov is in trouble again. This year a lot of sky-scrapers have been built which makes it difficult for the airplanes to fly above the city. It was decided that the planes should fly strictly from south to north. Moreover, there must be no sky scraper on a plane’s route, otherwise the anniversary will become a tragedy. The Ministry of Building gave the data on n sky scrapers (the rest of the buildings are rather small and will not be a problem to the planes). When looking at the city from south to north as a geometrical plane, the i-th building is a rectangle of height hi. Its westernmost point has the x-coordinate of li and the easternmost — of ri. The terrain of the area is plain so that all the buildings stand on one level. Your task as the Ministry of Defence’s head programmer is to find an enveloping polyline using the data on the sky-scrapers. The polyline’s properties are as follows:

  • If you look at the city from south to north as a plane, then any part of any building will be inside or on the boarder of the area that the polyline encloses together with the land surface.

  • The polyline starts and ends on the land level, i.e. at the height equal to 0.

  • The segments of the polyline are parallel to the coordinate axes, i.e. they can only be vertical or horizontal.

  • The polyline’s vertices should have integer coordinates.

  • If you look at the city from south to north the polyline (together with the land surface) must enclose the minimum possible area.

  • The polyline must have the smallest length among all the polylines, enclosing the minimum possible area with the land.

  • The consecutive segments of the polyline must be perpendicular.

f6eded0bbb137501689ab18a67078111dfb95f94.png

Picture to the second sample test (the enveloping polyline is marked on the right).


HIT:

input:

input.txt

output:

output.txt


Input

The first input line contains integer n (1 ≤ n ≤ 100000). Then follow n lines, each containing three integers hi, li, ri (1 ≤ hi ≤ 109,  - 109 ≤ li < ri ≤ 109).

Output

In the first line output integer m — amount of vertices of the enveloping polyline. The next m lines should contain 2 integers each — the position and the height of the polyline’s vertex. Output the coordinates of each vertex in the order of traversing the polyline from west to east. Remember that the first and the last vertices of the polyline should have the height of 0.

SampleInput 1
2
3 0 2
4 1 3
SampleOutput 1
6
0 0
0 3
1 3
1 4
3 4
3 0
SampleInput 2
5
3 -3 0
2 -1 1
4 2 4
2 3 7
3 6 8
SampleOutput 2
14
-3 0
-3 3
0 3
0 2
1 2
1 0
2 0
2 4
4 4
4 2
6 2
6 3
8 3
8 0
Submit
题目统计信息详细
总AC数3
通过人数3
尝试人数3
总提交量11
AC率27.27%
AC该题后可以添加标签
贴完标签可以获得20ACB。
并且可以获得本题所有提交代码查看权限。
点击标题可以显示标签。
如果你还没认真思考过这题,请不要查看标签
如果您已经通过了该题,请务为该题贴上标签
出处

T^T Online Judge

[BUG反馈] [FAQ] [闽ICP备17026590号-1]
当前版本:3.24 系统时间: