• 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

    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
    ",ans);
    44     }
    45     return 0;
    46 }
  • 相关阅读:
    android代码签名和混乱的包装
    C# 中对WinForm窗体中的控件快速设置TableIndex次序
    常用的Oracle数据库语句 (待更新完毕)
    [转] C# 键盘中的按键对应的KeyValue
    Oracle 数据库中日期时间的插入操作
    C#操作Excel,对Sheet插入次序的控制 (有待完善)
    Simditor图片上传
    文件类似的推理 -- 超级本征值(super feature)
    leetcode 名单 Insertion Sort List
    汉高澳大利亚sinox2014电影播放flash最好的办法是安装游戏windows文本firefox
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/5502065.html
Copyright © 2020-2023  润新知