405910: GYM102156 A Takeover

Memory Limit:0 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

A. Takeovertime limit per test2 secondsmemory limit per test512 mebibytesinputstandard inputoutputstandard output

A new IT company has recently founded their office in the city! Their headquarters are located at the point $$$(0, 0)$$$, and the campus is a rectangle with corners at $$$(0, 0)$$$ and $$$(1, 1)$$$. The campus is very small and has no facilities yet. However, there are many facilities in the neighborhood. Why not to enlarge the campus and have them all inside?

The facilities will be captured and added to the campus one by one. After taking control of each facility, the company has to rebuild the fence around the campus. The fence should be the smallest rectangle with sides parallel to coordinate axes that contains the headquarters and all captured facilities.

It is possible to reuse material from the previous fence, but sometimes the total length of the fence may increase. In this case it is necessary to buy some new material. If the length of the fence before the capture was $$$a$$$ meters, and after the capture it became $$$b$$$ meters, $$$b - a$$$ units of material should be bought.

It is hard to justify the needs for huge buys. Find the order of capturing the facilities such that the maximum increase in the length of the fence after the capture is minimized.

The material required for building the initial fence (of size 4) is not considered an increase, as it is initially present.

Input

In the first line of input, there is an integer $$$n$$$ ($$$1 \leq n \leq 3 \cdot 10^5$$$), the number of facilities. In each of the next $$$n$$$ lines, there are two integers, $$$x_i$$$ and $$$y_i$$$ ($$$1 \leq x_i, y_i \leq 10^9$$$), the coordinates of the $$$i$$$-th facility.

It is allowed for two facilities to be located at the same position, and for any facility to be already inside the campus initially.

Output

Print a permutation of numbers from $$$1$$$ to $$$n$$$: the order in which the facilities should be captured. This order should minimize the maximum increase in the length of the fence after the capture. The facilities are numbered from $$$1$$$ to $$$n$$$ in the order they are given in the input.

If there are multiple answers, print any one of them.

ExamplesInput
3
1 2
4 4
3 1
Output
1 3 2 
Input
4
1 4
2 3
3 2
4 1
Output
1 2 3 4 

加入题单

算法标签: