poj 3320 Jessica's Reading Problem(尺取法)

Posted UniqueColor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 3320 Jessica's Reading Problem(尺取法)相关的知识,希望对你有一定的参考价值。

Description

Jessicas 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 Jessicas 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 Jessicas 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

 

AC代码:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <set>
 5 #include <map>
 6 #include <algorithm>
 7 #include <vector>
 8 using namespace std;
 9 #define N 1000006
10 int n;
11 int a[N];
12 set<int> se;
13 map<int,int>mp;
14 int main()
15 {
16     while(scanf("%d",&n)==1){
17         se.clear();
18         mp.clear();
19         for(int i=0;i<n;i++){
20            scanf("%d",&a[i]);
21            se.insert(a[i]);
22         }
23         int size_ = se.size();
24         int ans = n;
25         int s=0,t=0;
26         int num=0;
27         while(1){
28            while(t<n && num<size_){
29               if(mp[a[t]]==0){
30                  num++;
31               }
32               mp[a[t]]++;
33               t++;
34            }
35            if(num<size_) break;
36            ans=min(ans,t-s);
37            mp[a[s]]--;
38            if(mp[a[s]]==0){
39               num--;
40            }
41            s++;
42         }
43         printf("%d\n",ans);
44     }
45     return 0;
46 }

 

以上是关于poj 3320 Jessica's Reading Problem(尺取法)的主要内容,如果未能解决你的问题,请参考以下文章

POJ - 3320 Jessica's Reading Problem

(尺取法)POJ 3320 Jessica's Reading Problem

POJ 3320Jessica's Reading Problem (尺取法)

poj3320 Jessica's Reading Problem

Jessica's Reading Problem(POJ 3320)

POJ3320 Jessica's Reading Problem(尺取+map+set)