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

Sequence(尺取)

时间:2018-07-20 20:08:06      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:define   ace   color   i++   algorithm   while   lse   line   cut   

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
11
1 2 3 4 5

Sample Output

2
3
题解:求连续子序列和大于等于s的最小长度。可以尺取,若sum<s,左指针右移,若sum>=s右指针左移,当sum<s时左指针继续右移,满足条件打擂台即可。
 1 #include<cstring>
 2 #include<cstdio>
 3 #include<algorithm>
 4 #define Inf 0x3f3f3f3f
 5 #define  ll   long long
 6 using namespace std;
 7 ll str[123400];
 8 int main()
 9 {
10     ll i,j,m,n,t;
11     scanf("%lld",&t);
12     while(t--)
13     {
14         scanf("%lld%lld",&m,&n);
15         for(i=0;i<m;i++)
16         {
17             scanf("%lld",&str[i]);
18         }
19         ll sum=0,cnt=0,cur=0,flag=0,ans=Inf,count1=0;
20         while(cur<m)
21         {
22             while(count1<m&&sum<=n)
23             {
24                 sum+=str[count1++];
25             }
26             if(sum<n)
27                 break;
28                 flag=1;
29             sum-=str[cur];
30             ans=min(ans,count1-cur);
31             cur++;
32         }
33         if(flag)
34         printf("%lld\n",ans);
35         else
36             puts("0");
37     }
38     return 0;
39 
40 }

 

Sequence(尺取)

标签:define   ace   color   i++   algorithm   while   lse   line   cut   

原文地址:https://www.cnblogs.com/moomcake/p/9343255.html

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