Jessica's Reading Problem(尺取法)

Description

Jessica's a very lovely girl wooed by lots of boys. Recently she has a problem. The final exam is coming, yet she has spent little time on it. If she wants to pass it, she has to master all ideas included in a very thick text book. The author of that text book, like other authors, is extremely fussy about the ideas, thus some ideas are covered more than once. Jessica think if she managed to read each idea at least once, she can pass the exam. She decides to read only one contiguous part of the book which contains all ideas covered by the entire book. And of course, the sub-book should be as thin as possible.

A very hard-working boy had manually indexed for her each page of Jessica's text-book with what idea each page is about and thus made a big progress for his courtship. Here you come in to save your skin: given the index, help Jessica decide which contiguous part she should read. For convenience, each idea has been coded with an ID, which is a non-negative integer.

Input

The first line of input is an integer P (1 ≤ P ≤ 1000000), which is the number of pages of Jessica's text-book. The second line contains P non-negative integers describing what idea each page is about. The first integer is what the first page is about, the second integer is what the second page is about, and so on. You may assume all integers that appear can fit well in the signed 32-bit integer type.

Output

Output one line: the number of pages of the shortest contiguous part of the book which contains all ideals covered in the book.

Sample Input

5
1 8 8 8 1

Sample Output

2

//尺取法,先得出出现的不同数字的个数len,然后从头开始先选出等于len的子序列,然后减去该子序列左边的值,减去后如果还是等于len,继续减去左边的值,如果小于len了,则向右加,直到再次达到len.

#include
#include
#include
#include
#include
using namespace std;
mapa;
int P, p[1000010];


int main()
{
    while(scanf("%d",&P)!=EOF)
    {
        a.clear();
        for(int i=0; i         {
            scanf("%d",&p[i]);
            a[p[i]] = 1;
        }
        int len = a.size();//一共多少种不同元素
        a.clear();
        int num=0, s=0, t=0, ans=P;
        while(1)
        {
            while(t

            {
                if(a[p[t]]==0)
                    num++;
                a[p[t]]++;//前len种不同元素出现的次数
                t++;
            }
            if(num < len)
                break;//没有连续的子书包含所有内容
            ans = min(ans,t-s);//尽量取小一点的子书
            a[p[s]]--;
            if(a[p[s]]==0)
                num--;
            s++;
        }
        printf("%d\n",ans);
    }
}






你可能感兴趣的:(Jessica's Reading Problem(尺取法))