POJ 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

Source

题意:给一个数列,找到一个最小的区间,包含这个数列中出现的所有元素。
思路:这类连续的区间问题,很多都可以用这种尺取法线性的扫描。即维护两个指针,指向当前维护的区间的首和尾,贪心的去尽量的缩小区间范围。比如这题就是要保证区间的首元素只出现了一次,否则就把首指针后移。当区间内不同元素的个数小于总个数,就把尾指针后移。
 
代码:
 1 #include "cstdio"
 2 #include "iostream"
 3 #include "algorithm"
 4 #include "string"
 5 #include "cstring"
 6 #include "queue"
 7 #include "cmath"
 8 #include "vector"
 9 #include "map"
10 #include "stdlib.h"
11 #include "set"
12 #define mj
13 #define db double
14 #define ll long long
15 using  namespace std;
16 const int N=1e6+5;
17 const int mod=1e9+7;
18 const ll inf=1e16+10;
19 int a[N];
20 map<int ,int > u,v;
21 int main()
22 {
23     int n;
24     scanf("%d",&n);
25     int cnt=0;
26     for(int i=0;i<n;i++){
27         scanf("%d",a+i);
28         if(!u[a[i]]) cnt++;
29         u[a[i]]++;
30     }
31     int l=0,r=0,ans=0,res=n;
32     for(;;)
33     {
34         while(r<n&&ans<cnt){
35             if(v[a[r++]]++==0) ans++;
36         }
37         if(ans<cnt) break;
38         res=min(res,r-l);
39         if(--v[a[l++]]==0) ans--;
40     }
41     printf("%d
",res);
42 }
原文地址:https://www.cnblogs.com/mj-liylho/p/7147252.html