poj3320尺取法

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
题意:找最少的连续页数使得覆盖全书的所有知识点
题解:尺取法,也叫做two point 很形象就是两段不断改变来找到最值。时间复杂度减低了很多
#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define pi acos(-1)
#define ll long long
#define mod 1000000007

using namespace std;

const int N=1000000+5,maxn=100+5,inf=0x3f3f3f3f;

int p,a[N];
set<int>ss;
map<int,int>m;

int main()
{
   /* ios::sync_with_stdio(false);
    cin.tie(0);*/
    scanf("%d",&p);
    for(int i=0;i<p;i++)
    {
        scanf("%d",&a[i]);
        ss.insert(a[i]);
    }
    int n=ss.size();
    int num=0,st=0,en=0,ans=p;
    for(;;)
    {
        while(en<p&&num<n){
            if(m[a[en++]]++==0)num++;
        }
        if(num<n)break;
        ans=min(ans,en-st);
        if(--m[a[st++]]==0)num--;
    }
    printf("%d
",ans);
    return 0;
}
View Code

还有就是不知道为啥用cin和cout居然TLE了,而且我还加了

ios::sync_with_stdio(false);
cin.tie(0);

代码也放上来!!

#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define pi acos(-1)
#define ll long long
#define mod 1000000007

using namespace std;

const int N=1000000+5,maxn=100+5,inf=0x3f3f3f3f;

int p,a[N];

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin>>p;
    set<int>ss;
    for(int i=0;i<p;i++)
    {
        cin>>a[i];
        ss.insert(a[i]);
    }
    int n=ss.size();
    map<int,int>m;
    int num=0,st=0,en=0,ans=p;
    for(;;)
    {
        while(en<p&&num<n){
            if(m[a[en++]]++==0)num++;
        }
        if(num<n)break;
        ans=min(ans,en-st);
        if(--m[a[st++]]==0)num--;
    }
    cout<<ans<<endl;
    return 0;
}
View Code
原文地址:https://www.cnblogs.com/acjiumeng/p/6752439.html