首页 > 代码库 > Subsequence
Subsequence
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
210 155 1 3 5 10 7 4 9 2 85 111 2 3 4 5
Sample Output
23
1 #include"iostream" 2 #include"cstdio" 3 #include"cstring" 4 #include"algorithm" 5 using namespace std; 6 const int ms=100004; 7 int a[ms]; 8 int sum[ms]; 9 int n,S;10 void solve()11 {12 sum[0]=0;13 for(int i=0;i<n;i++)14 sum[i+1]=sum[i]+a[i];15 if(sum[n]<S)16 {17 puts("0");18 return ;19 }20 int ans=n;21 for(int s=0;sum[s]+S<=sum[n];s++)22 {23 int t=lower_bound(sum+s,sum+n+1,sum[s]+S)-sum;24 ans=min(ans,t-s);25 }26 printf("%d\n",ans);27 return ;28 }29 int main()30 {31 int T;32 cin>>T;33 while(T--)34 {35 cin>>n>>S;36 for(int i=0;i<n;i++)37 cin>>a[i];38 solve();39 }40 return 0;41 }
Subsequence
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。