3472.Reconnaissance 2

Time Limit: 1s Memory Limit: 256MB

n soldiers stand in a circle. For each soldier his height ai is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |ai-aj| is minimal. So each of them will be less noticeable with the other. Output any pair of soldiers that can form a reconnaissance unit.

Input Format(From the terminal/stdin)

The first line contains integer n (2 \le n \le 100) - amount of soldiers. Then follow the heights of the soldiers in their order in the circle - n space-separated integers a1,a2,...,an (1 \le ai \le 1000). The soldier heights are given in clockwise or counterclockwise direction.

Output Format(To the terminal/stdout)

Output two integers - indexes of neighbouring soldiers, who should form a reconnaissance unit. If there are many optimum solutions, output any of them. Remember, that the soldiers stand in a circle.

Sample Input 1

Copy
5
10 12 13 15 10
 \n
  ·  ·  ·  ·  \n

Sample Output 1

Copy
5 1
 · \n

Sample Input 2

Copy
4
10 20 30 40
 \n
  ·  ·  ·  \n

Sample Output 2

Copy
1 2
 · \n

Submit

请先 登录

© 2025 FAQs