codeforces+contest978problemE. Bus Video System+思维

E. Bus Video System
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

The busses in Berland are equipped with a video surveillance system. The system records information about changes in the number of passengers in a bus after stops.

If x

is the number of passengers in a bus just before the current bus stop and y is the number of passengers in the bus just after current bus stop, the system records the number yx

. So the system records show how number of passengers changed.

The test run was made for single bus and n

bus stops. Thus, the system recorded the sequence of integers a1,a2,,an (exactly one number for each bus stop), where ai is the record for the bus stop i. The bus stops are numbered from 1 to n

in chronological order.

Determine the number of possible ways how many people could be in the bus before the first bus stop, if the bus has a capacity equals to w

(that is, at any time in the bus there should be from 0 to w

passengers inclusive).

Input

The first line contains two integers n

and w (1n1000,1w109)

— the number of bus stops and the capacity of the bus.

The second line contains a sequence a1,a2,,an

(106ai106), where ai equals to the number, which has been recorded by the video system after the i

-th bus stop.

Output

Print the number of possible ways how many people could be in the bus before the first bus stop, if the bus has a capacity equals to w

. If the situation is contradictory (i.e. for any initial number of passengers there will be a contradiction), print 0.

Examples
Input
Copy
3 5
2 1 -3
Output
Copy
3
Input
Copy
2 4
-1 1
Output
Copy
4
Input
Copy
4 10
2 4 1 2
Output
Copy
2
Note

In the first example initially in the bus could be 0

, 1 or 2

passengers.

In the second example initially in the bus could be 1

, 2, 3 or 4

passengers.

In the third example initially in the bus could be 0

or 1

passenger.

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,a,b) for(int i=a;i<=b;i++)
ll rd(){
    ll x=0,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}

int main(){
  // freopen("in.txt","r",stdin);
   int n=rd(),w=rd();
   ll sum=0;
   ll lf=0,rg=w;
   while(n--){
        ll a=rd();
        sum+=a;
        lf=max(lf,-sum);
        rg=min(rg,w-sum);
        //cout<<lf<<" "<<rg<<endl;
   }

   if(lf<=rg)
    return printf("%d\n",rg-lf+1);
   return puts("0"),0;
}

猜你喜欢

转载自blog.csdn.net/ujn20161222/article/details/80308257