zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    Ubuntu 14.04 配置FTP
    python 命名规范
    Windows 多用户远程访问 Ubuntu 14.04桌面
    ubuntu 安装Matlab 解决显示中文乱码
    形式参数、实际参数和值传递、引用传递
    关于Hibernate中的临时态, 持久态, 游离态
    HTTP错误
    SpringMVC注解
    java变量的命名使用规则
    字节流与字符流的区别详解
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/5502065.html
Copyright © 2011-2022 走看看