poj 3320 Jessica's Reading Problem 尺取法

來源:互聯網
上載者:User

標籤:

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

51 8 8 8 1

Sample Output

2

Source

POJ Monthly--2007.08.05, Jerry思路:簡單的尺取法
#include<iostream>#include<cstdio>#include<cmath>#include<string>#include<queue>#include<algorithm>#include<stack>#include<cstring>#include<vector>#include<list>#include<set>#include<map>using namespace std;#define ll __int64#define mod 1000000007#define inf 999999999//#pragma comment(linker, "/STACK:102400000,102400000")int scan(){    int res = 0 , ch ;    while( !( ( ch = getchar() ) >= ‘0‘ && ch <= ‘9‘ ) )    {        if( ch == EOF ) return 1 << 30 ;    }    res = ch - ‘0‘ ;    while( ( ch = getchar() ) >= ‘0‘ && ch <= ‘9‘ )        res = res * 10 + ( ch - ‘0‘ ) ;    return res ;}int a[1000010];set<int>s;map<int,int>m;int main(){    int x,y,z,i,t;    while(~scanf("%d",&x))    {        s.clear();        m.clear();        for(i=0;i<x;i++)        {            scanf("%d",&a[i]);            s.insert(a[i]);        }        y=s.size();        int st=0,ji=0,en=0,minn=10000010;        while(1)        {            while(en<x&&ji<y)            {                if(m[a[en]]==0)                ji++;                m[a[en]]++;                en++;            }            //cout<<st<<" "<<en<<" "<<ji<<"~~~"<<endl;            if(ji<y)break;            if(en-st<minn)            minn=en-st;            m[a[st]]--;            if(m[a[st]]==0)            ji--;            st++;        }        printf("%d\n",minn);    }    return 0;}
View Code

 

poj 3320 Jessica's Reading Problem 尺取法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.