2605.Nearest vectors

Time Limit: 1s Memory Limit: 256MB

You are given the set of vectors on the plane, each of them starting at the origin. Your task is to find a pair of vectors with the minimal non-oriented angle between them.

Non-oriented angle is non-negative value, minimal between clockwise and counterclockwise direction angles. Non-oriented angle is always between 0 and π. For example, opposite directions vectors have angle equals to π.

Input Format(From the terminal/stdin)

First line of the input contains a single integer n (2 \le n \le 100000)- the number of vectors.

The i-th of the following n lines contains two integers xi and yi (|x|,|y| \le 10000,x2+y2 \gt 0)- the coordinates of the i-th vector. Vectors are numbered from 1 to n in order of appearing in the input. It is guaranteed that no two vectors in the input share the same direction (but they still can have opposite directions).

Output Format(To the terminal/stdout)

Print two integer numbers a and b (a \neq b)- a pair of indices of vectors with the minimal non-oriented angle. You can print the numbers in any order. If there are many possible answers, print any.

Sample Input 1

Copy
4
-1 0
0 -1
1 0
1 1
 \n
  · \n
 ·  \n
 · \n
 · \n

Sample Output 1

Copy
3 4
 · \n

Sample Input 2

Copy
6
-1 0
0 -1
1 0
1 1
-4 -5
-4 -6
 \n
  · \n
 ·  \n
 · \n
 · \n
  ·  \n
  ·  \n

Sample Output 2

Copy
6 5
 · \n

Submit

请先 登录

© 2025 FAQs