码迷,mamicode.com
首页 > 其他好文 > 详细

尺取法

时间:2015-02-11 20:34:14      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
#include<cstdlib>
#include<algorithm>
using namespace std;
int n,S,sum,a[1010];
int main()
{
    int t=0,s=0,res;
    scanf("%d%d",&n,&S);
    res=n+1;
    for(int i=0;i<n;i++)
        scanf("%d",&a[i]);
    for(;;)
    {
        while(t<n&&sum<S)
        {
            sum+=a[t++];
        }
        if(sum<S)
            break;
        res=min(res,t-s);
        sum-=a[s++];
    }
    if(res>n)
        res=0;
    printf("%d\n",res);
    return 0;
}

  

尺取法

标签:

原文地址:http://www.cnblogs.com/a972290869/p/4286895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!