【Codeforces 279B】books

 

B. Books

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

When Valera has got some free time, he goes to the library to read some books. Today he's got t free minutes to read. That's why Valera took n books in the library and for each book he estimated the time he is going to need to read it. Let's number the books by integers from 1 to n. Valera needs ai minutes to read the i-th book.

Valera decided to choose an arbitrary book with number i and read the books one by one, starting from this book. In other words, he will first read book number i, then book number i + 1, then book number i + 2 and so on. He continues the process until he either runs out of the free time or finishes reading the n-th book. Valera reads each book up to the end, that is, he doesn't start reading the book if he doesn't have enough free time to finish reading it.

Print the maximum number of books Valera can read.

Input

The first line contains two integers n and t (1 ≤ n ≤ 105; 1 ≤ t ≤ 109) — the number of books and the number of free minutes Valera's got. The second line contains a sequence of n integers a1, a2, ..., an (1 ≤ ai ≤ 104), where number ai shows the number of minutes that the boy needs to read the i-th book.

Output

Print a single integer — the maximum number of books Valera can read.

Examples

input

Copy

4 5
3 1 2 1

output

Copy

3

input

Copy

3 3
2 2 3

output

Copy

1

经典的二分查找问题:

#include<bits/stdc++.h>
using namespace std; 
#define MAXN 100005
long long sum[MAXN];
int a[1000005];
int n,t;
bool check(int l)//判断函数 
{
	int x=1;
	int y=x+l-1;
	while(x<=n)
	{
		if(sum[y]-sum[x-1]>0&&sum[y]-sum[x-1]<=t)
		{
			return true;
		}
		if(sum[y]-sum[x-1]<0) return false;
		++x;
		y=l+x-1;
	}
	return false;
 } 
 int main()
 {
 	cin>>n>>t;
 	for(int i=1;i<=n;i++)
 	{
 		cin>>a[i];
	 }
	 for(int i=1;i<=n;i++)
	 {
	 	sum[i]=sum[i-1]+a[i];
	 }
	 int left=0,right=n;
	 int mid;
	 while(left<right)//二分 
	 {
	    mid=(left+right+1)/2;
	 	if(check(mid))
	 	{
	 		left=mid;
		}
		else
		{
			right=mid-1; 
		}
	 }
	 cout<<left<<endl;
	 return 0;
 }

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值