• 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;
    }

     

  • 相关阅读:
    MapReduce之Map Join
    MapReduce之Reduce Join
    MapReduce清洗日志数据统计PV量
    Hadoop MapReduce自定义数据类型
    ES6 对象拓展方法
    ES6箭头函数与this指向
    ES6参数默认值,剩余参数及展开数组
    ES6模板字符串及字符串的扩展方法
    浅谈ES6数组及对象的解构
    ECMAScript概述及浅谈const,let与块级作用域
  • 原文地址:https://www.cnblogs.com/Noevon/p/5700761.html
Copyright © 2020-2023  润新知