CF1680D.Dog Walking
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are walking with your dog, and now you are at the promenade. The promenade can be represented as an infinite line. Initially, you are in the point 0 with your dog.
You decided to give some freedom to your dog, so you untied her and let her run for a while. Also, you watched what your dog is doing, so you have some writings about how she ran. During the i -th minute, the dog position changed from her previous position by the value ai (it means, that the dog ran for ai meters during the i -th minute). If ai is positive, the dog ran ai meters to the right, otherwise (if ai is negative) she ran ai meters to the left.
During some minutes, you were chatting with your friend, so you don't have writings about your dog movement during these minutes. These values ai equal zero.
You want your dog to return to you after the end of the walk, so the destination point of the dog after n minutes should be 0 .
Now you are wondering: what is the maximum possible number of different integer points of the line your dog could visit on her way, if you replace every 0 with some integer from −k to k (and your dog should return to 0 after the walk)? The dog visits an integer point if she runs through that point or reaches in it at the end of any minute. Point 0 is always visited by the dog, since she is initially there.
If the dog cannot return to the point 0 after n minutes regardless of the integers you place, print -1.
输入格式
The first line of the input contains two integers n and k ( 1≤n≤3000;1≤k≤109 ) — the number of minutes and the maximum possible speed of your dog during the minutes without records.
The second line of the input contains n integers a1,a2,…,an ( −109≤ai≤109 ), where ai is the number of meters your dog ran during the i -th minutes (to the left if ai is negative, to the right otherwise). If ai=0 then this value is unknown and can be replaced with any integer from the range [−k;k] .
输出格式
If the dog cannot return to the point 0 after n minutes regardless of the set of integers you place, print -1. Otherwise, print one integer — the maximum number of different integer points your dog could visit if you fill all the unknown values optimally and the dog will return to the point 0 at the end of the walk.
输入输出样例
输入#1
3 2 5 0 -4
输出#1
6
输入#2
6 4 1 -2 0 3 -4 5
输出#2
7
输入#3
3 1000000000 0 0 0
输出#3
1000000001
输入#4
5 9 -7 -3 8 12 0
输出#4
-1
输入#5
5 3 -1 0 3 3 0
输出#5
7
输入#6
5 4 0 2 0 3 0
输出#6
9