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

    Source

    POJ Monthly--2007.08.05, Jerry

    题目大意:给你n个数,不同的数代表不同的知识点,求出最少的页数,使得覆盖全部知识点

    题解:和区间求和差不多,尺取法O(n)指针从开始一直扩展,用MAP存知识点。

    #include <map>
    #include <stdio.h>
    using namespace std;
    map<int, int>mp1, mp;
    int a[1234567];
    int main()
    {
        int n, i, num, z, y, sum, l;
        while(scanf("%d", &n)!=EOF)
        {
        mp.clear();
        mp1.clear();
        for(i=0;i<n;i++)
            {
                scanf("%d", &a[i]);
                mp[a[i]]++;
            }
        num = mp.size();
        sum=z=y=0;
        l=n;
        while(1)
        {
        while(y<n&&sum<num)
            if(mp1[a[y++]]++==0)
                sum++;
        if(sum<num) break;
        l = min(l, y-z);
        if(--mp1[a[z++]]==0)
                sum--;
        }
        printf("%d
    ", l);
        }
        return 0;
    }

     

  • 相关阅读:
    转载:如何在 ES5 环境下实现一个const
    vue-element-admin中public中json中的代码没有打包到线上
    cordova打包vue2(webpack)android、ios app
    Cordova开发App入门之创建android项目
    vuex的理解
    Vue中的computed属性
    yarn 常用命令(基于vue框架)
    npm和yarn的使用对比
    npm常用命令
    asp.net ashx一般处理程序实现async await异步操作
  • 原文地址:https://www.cnblogs.com/Noevon/p/5700761.html
Copyright © 2011-2022 走看看