POJ 3320 Jessica's Reading Problem

来源:互联网 发布:加强网络监督文化建设 编辑:程序博客网 时间:2024/05/19 17:03

Jessica's Reading Problem
Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

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

51 8 8 8 1

Sample Output

2

尺取法的水题,维护左右端点,并且记录当前区间内有多少种不同的数字,每种有多少个
Hash的地方用map处理


代码如下

#include<cstdio>#include<cstring>#include<iostream>#include<map>#include<set>using namespace std;map<int,int> f;  set<int> d;  int s[1000050];int tot=0;int n;int ans=0;int main(){scanf("%d",&n);d.clear();f.clear();for (int i=1;i<=n;i++){scanf("%d",&s[i]);d.insert(s[i]);}tot=d.size();int l=1;int r=1;int now=0;ans=n;while (l<=n && r<=n){if (!f[s[r]]){now++;}f[s[r]]++;while (f[s[l]]>=2){f[s[l]]--;l++;}if(now==tot){              ans=min(ans,r-l+1);            f[s[l]]--;            if(!f[s[l]]){now--;}            l++;          }          r++;}printf("%d\n",ans);return 0;}


0 0
原创粉丝点击