UVa 1121 - Subsequence(尺取法)

给出一个序列,求连续子序列和大于s的最短子序列长度。
尺取法,最开始子序列只有第一个数,当不满足条件时,移动终点延长子序列;当序列和满足条件时,移动起点缩短子序列,遍历数组复杂度 O ( n ) 。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=100010;
int a[maxn];
int main(){
int n,s;
while(~scanf("%d%d",&n,&s)){
for(int i=0;i<n;++i) scanf("%d",&a[i]);
int res=n+1;
int l=0,r=0,sum=0;
for(;;){
while(r<n&&sum<s) sum+=a[r++];
if(sum<s) break;
res=min(res,r-l);
sum-=a[l++];
}
if(res>n) res=0;
printf("%d\n",res);
}
return 0;
}

** 本文迁移自我的CSDN博客,格式可能有所偏差。 **