codeforces+contest978problemE. Bus Video System+思维

本文介绍了一种公交车视频监控系统,该系统记录了乘客数量在各个站点的变化,并通过一系列整数记录来展示乘客数量的变化情况。文章探讨了如何确定初始乘客数量的可能性,考虑到了车辆的容量限制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值