zoukankan      html  css  js  c++  java
  • poj3320尺取法

    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
    题意:找最少的连续页数使得覆盖全书的所有知识点
    题解:尺取法,也叫做two point 很形象就是两段不断改变来找到最值。时间复杂度减低了很多
    #include<map>
    #include<set>
    #include<cmath>
    #include<queue>
    #include<stack>
    #include<vector>
    #include<cstdio>
    #include<cstdlib>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #define pi acos(-1)
    #define ll long long
    #define mod 1000000007
    
    using namespace std;
    
    const int N=1000000+5,maxn=100+5,inf=0x3f3f3f3f;
    
    int p,a[N];
    set<int>ss;
    map<int,int>m;
    
    int main()
    {
       /* ios::sync_with_stdio(false);
        cin.tie(0);*/
        scanf("%d",&p);
        for(int i=0;i<p;i++)
        {
            scanf("%d",&a[i]);
            ss.insert(a[i]);
        }
        int n=ss.size();
        int num=0,st=0,en=0,ans=p;
        for(;;)
        {
            while(en<p&&num<n){
                if(m[a[en++]]++==0)num++;
            }
            if(num<n)break;
            ans=min(ans,en-st);
            if(--m[a[st++]]==0)num--;
        }
        printf("%d
    ",ans);
        return 0;
    }
    View Code

    还有就是不知道为啥用cin和cout居然TLE了,而且我还加了

    ios::sync_with_stdio(false);
    cin.tie(0);

    代码也放上来!!

    #include<map>
    #include<set>
    #include<cmath>
    #include<queue>
    #include<stack>
    #include<vector>
    #include<cstdio>
    #include<cstdlib>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #define pi acos(-1)
    #define ll long long
    #define mod 1000000007
    
    using namespace std;
    
    const int N=1000000+5,maxn=100+5,inf=0x3f3f3f3f;
    
    int p,a[N];
    
    int main()
    {
        ios::sync_with_stdio(false);
        cin.tie(0);
        cin>>p;
        set<int>ss;
        for(int i=0;i<p;i++)
        {
            cin>>a[i];
            ss.insert(a[i]);
        }
        int n=ss.size();
        map<int,int>m;
        int num=0,st=0,en=0,ans=p;
        for(;;)
        {
            while(en<p&&num<n){
                if(m[a[en++]]++==0)num++;
            }
            if(num<n)break;
            ans=min(ans,en-st);
            if(--m[a[st++]]==0)num--;
        }
        cout<<ans<<endl;
        return 0;
    }
    View Code
  • 相关阅读:
    C#LPT端口连接热敏打印机发送指令
    c# 普通打印机大致有三种方法(非热敏打印机及lpt1并口指令控制型)
    C#直接发送打印机命令到打印机(这里测试的是直接弹出钱箱操作)
    c#操作access,update语句不执行的解决办法
    element-ui dialog组件添加可拖拽位置 可拖拽宽高[转]
    [JavaScript] js实现简单的代码运行框【转】
    HTML5 drag & drop 拖拽与拖放简介[转]
    webpack 单独打包指定JS文件(转)
    跳转地图并定位
    基于Cesium实现逼真的水特效[转]
  • 原文地址:https://www.cnblogs.com/acjiumeng/p/6752439.html
Copyright © 2011-2022 走看看