zoukankan      html  css  js  c++  java
  • POJ3061 Subsequence

    Subsequence
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 16520   Accepted: 7008

    Description

    A sequence of N positive integers (10 < N < 100 000), each of them less than or equal 10000, and a positive integer S (S < 100 000 000) are given. Write a program to find the minimal length of the subsequence of consecutive elements of the sequence, the sum of which is greater than or equal to S.

    Input

    The first line is the number of test cases. For each test case the program has to read the numbers N and S, separated by an interval, from the first line. The numbers of the sequence are given in the second line of the test case, separated by intervals. The input will finish with the end of file.

    Output

    For each the case the program has to print the result on separate line of the output file.if no answer, print 0.

    Sample Input

    2
    10 15
    5 1 3 5 10 7 4 9 2 8
    5 11
    1 2 3 4 5

    Sample Output

    2
    3

    Source

     
    题目大意:t个测试数据 对于一个长度为N的序列 求出总和不小于S的连续子序列的长度的最小值。
    题解:
    解法一、
    二分搜索
    前缀和是满足单调性的,计算从每一个数开始总和刚好大于s的长度。具体实现就是
    二分搜索s[i]+s是否存在于前缀和数组中,就是查找以i+1开头的总和刚好大于s的最短长度。
    #include<iostream>
    #include<cstdio>
    #include<algorithm>
    using namespace std;
    int t,n,s,x;
    int sum[100005];
    int main(){
        scanf("%d",&t);
        while(t--){
            scanf("%d%d",&n,&s);
            for(int i=1;i<=n;i++){
                scanf("%d",&x);
                sum[i]=sum[i-1]+x;
            }
            if(sum[n]<s){
                printf("0
    ");
                continue;
            }
            int res=n;
            for(int i=0;sum[i]+s<=sum[n];i++){
                int t=lower_bound(sum+i+1,sum+n+1,sum[i]+s)-sum;
                res=min(res,t-i);
            }
            printf("%d
    ",res);
        }
        return 0;
    }
    时间复杂度nlog(n)
    解法二、
    尺取法 时间复杂度O(n)
    #include<iostream>
    #include<cstdio>
    using namespace std;
    int res,t,n,s,l,r,sum;
    int a[100006]; 
    int main(){
        scanf("%d",&t);
        while(t--){
            scanf("%d%d",&n,&s);
            for(int i=1;i<=n;i++)scanf("%d",&a[i]);
            l=r=1;sum=0;res=n+1;
            for(;;){
                while(r<=n&&sum<s){
                    sum+=a[r++];
                }
                if(sum<s)break;//必须先判断才能更新解 
                res=min(res,r-l);
                sum-=a[l++];
            }
            if(res>n)printf("0
    ");
            else printf("%d
    ",res);
        }
        return 0;
    }
  • 相关阅读:
    折线图
    饼图
    VC中custom symbol的方法(For MO)制作带箭头的线
    Yahoo!:美国 RSS 使用状况的调查报告
    中国搜 为人民服务 整合本地搜索引擎 出差旅游搜索国外国内当地服务网站 快速进行本地资源查找利用
    MO自定义符号之二(将点显示为水池符号)
    美国在线公司斥资2.5亿美元收购大批博客网站
    ESRI新的开发网站
    Java: 把金额转换为汉字的类
    常见的网上邻居访问问题汇集
  • 原文地址:https://www.cnblogs.com/zzyh/p/7488929.html
Copyright © 2011-2022 走看看