http://poj.org/problem?id=3320
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
某人读一本书,要看完所有的知识点,这本书共有P页,第i页恰好有一个知识点ai,(每一个知识点都有一个整数编号)。全书同一个知识点可能会被提到多次,他希望阅读其中一些连续的页把所有知识点都读到,给定每页所读到的知识点,求最少的阅读页数。
用到尺取法。
尺取的思路:
①不停扩展t,并把扫过知识点丢到map里,直到map的size符合要求。
②更新结果。
②s++,map里的对应mm(a[l++])的个数-1,相当于移出这页。
如果对应的mm的个数<=0,则应该erase掉这个mm,防止map::size()的误判。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <map>
#include <set>
#include <algorithm>
using namespace std;
const int N = 1000000 + 100 ;
int arr[N];
map<int,int>mm;
int main()
{
int n;
scanf("%d",&n);
for(int i=1;i<=n;i++) scanf("%d",&arr[i]),mm[arr[i]]++;
int ans = n;
int tmp = mm.size();
int s = 1, t = 1;
int num = 0;
mm.clear();
while(true)
{
while(t<=n && num<tmp)
{
// if(mm[arr[t++]]++==0) num++;
if(mm[arr[t]]==0) num++;
mm[arr[t]]++;
t++;
}
if(num<tmp) break;
ans = min(ans,t-s);
//if(--mm[arr[s++]]==0) num--;
mm[arr[s]]--;
if(mm[arr[s]]==0) num--;
s++;
}
printf("%d\n",ans);
return 0;
}