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 }
  • 相关阅读:
    vscode 在linux中,切换语言模式快捷键
    转载大神的一篇文章----【如何选择开源许可证?】
    Kibana6.x.x——源码发布
    Kibana6.x.x——【Running "run:optimizeBuild" (run) task】出现警告信息
    linux系统为文件添加执行权限
    Kibana6.x.x——执行yarn build出现的警告信息记录
    Kibana6.x.x——导航权限控制入门
    poj 2187:Beauty Contest(计算几何,求凸包,最远点对)
    poj 2386:Lake Counting(简单DFS深搜)
    蓝桥杯 第三届C/C++预赛真题(10) 取球游戏(博弈)
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/5502065.html
Copyright © 2011-2022 走看看