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

poj 3061 Subsequence

时间:2016-06-08 23:03:53      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

题意:n个数,求最短的子序列和>=s

分析:尺取法,也叫蠕虫法,每次枚举起点,然后往右移动,找到右边界

 

技术分享
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
using namespace std;
const int maxn=1e5+5;
int c[maxn];

int main(){
    int t,n,s;
    scanf("%d",&t);
    while(t--){
        scanf("%d%d",&n,&s);
        for(int i=0;i<n;i++)
          scanf("%d",c+i);
        int ans=n+1;
        int l=0,r=0,sum=0;
        for(;;){
            while(r<n&&sum<s)
                sum+=c[r++];
            if(sum<s)break;
            ans=min(ans,r-l);
            sum-=c[l++];
        }
        if(ans==n+1)
          puts("0");
        else
          printf("%d\n",ans);
    }
    return 0;
}
View Code

 

poj 3061 Subsequence

标签:

原文地址:http://www.cnblogs.com/jihe/p/5571346.html

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