UVALive 2678 大于s的最短子序列和

input

n s 10<=n<=100000,s<1e9

a1 a2 ... an     ai<=10000

output

大于s的最短子序列和的长度,没有输出0

 1 #include 
 2 #include 
 3 #include 
 4 #include 
 5 #include 
 6 #include 
 7 #include 
 8 #include 
 9 #include <set>
10 #include 
11 #include 
12 #define MAX 100000
13 
14 using namespace std;
15 int n,s,a[MAX+10];
16 int main()
17 {
18     freopen("/home/user/桌面/in","r",stdin);
19     while(scanf("%d%d",&n,&s)==2)
20     {
21         int ans=0x7fffffff;
22         scanf("%d",&a[0]);
23         for(int i=1;i)
24         {
25             scanf("%d",&a[i]);
26             a[i]+=a[i-1];
27         }
28         int p=0;
29         for(int i=0;i)
30         {
31             if(a[i]-s>0) p=lower_bound(&a[p],a+i,a[i]-s)-a;
32             if(p>0) ans=min(ans,i-p+1);
33         }
34 /*        for(int i=0,j=0;i35         {
36             if(a[j]>a[i]-s) continue;
37             while(a[j]38             ans=min(ans,i-j+1);
39         }*/
40         a[n-1]>=s?printf("%d\n",ans):puts("0");
41     }
42     //printf("time=%.3lf",(double)clock()/CLOCKS_PER_SEC);
43     return 0;
44 }
View Code

 

转载于:https://www.cnblogs.com/cdyboke/p/4995876.html

你可能感兴趣的:(UVALive 2678 大于s的最短子序列和)