302879: CF558B. Amr and The Large Array

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

Description

Amr and The Large Array

题意翻译

给定一个数组,请取出一个子段,在保证某个数字在此子段中出现的次数与给定数组相同的情况下,使这个子段长度最短。

题目描述

Amr has got a large array of size $ n $ . Amr doesn't like large arrays so he intends to make it smaller. Amr doesn't care about anything in the array except the beauty of it. The beauty of the array is defined to be the maximum number of times that some number occurs in this array. He wants to choose the smallest subsegment of this array such that the beauty of it will be the same as the original array. Help Amr by choosing the smallest subsegment possible.

输入输出格式

输入格式


The first line contains one number $ n $ ( $ 1<=n<=10^{5} $ ), the size of the array. The second line contains $ n $ integers $ a_{i} $ ( $ 1<=a_{i}<=10^{6} $ ), representing elements of the array.

输出格式


Output two integers $ l,r $ ( $ 1<=l<=r<=n $ ), the beginning and the end of the subsegment chosen respectively. If there are several possible answers you may output any of them.

输入输出样例

输入样例 #1

5
1 1 2 2 1

输出样例 #1

1 5

输入样例 #2

5
1 2 2 3 1

输出样例 #2

2 3

输入样例 #3

6
1 2 2 1 1 2

输出样例 #3

1 5

说明

A subsegment $ B $ of an array $ A $ from $ l $ to $ r $ is an array of size $ r-l+1 $ where $ B_{i}=A_{l+i-1} $ for all $ 1<=i<=r-l+1 $

Input

题意翻译

给定一个数组,请取出一个子段,需要保证子段中的数字出现的最大值与原数组的数字出现最大值一样,问这个子段长度最短是多少。

加入题单

算法标签: