1413. Minimum Value to Get Positive Step by Step Sum

Given an array of integers nums, you start with an initial positive value startValue .

In each iteration, you calculate the step by step sum of startValue plus elements in nums (from left to right).

Return the minimum positive value of startValue such that the step by step sum is never less than 1.

Example 1:

复制代码
Input: nums = [-3,2,-3,4,2]
Output: 5
Explanation: If you choose startValue = 4, in the third iteration your step by step sum is less than 1.
step by step sum
startValue = 4 | startValue = 5 | nums
  (4 -3 ) = 1  | (5 -3 ) = 2    |  -3
  (1 +2 ) = 3  | (2 +2 ) = 4    |   2
  (3 -3 ) = 0  | (4 -3 ) = 1    |  -3
  (0 +4 ) = 4  | (1 +4 ) = 5    |   4
  (4 +2 ) = 6  | (5 +2 ) = 7    |   2

Example 2:

复制代码
Input: nums = [1,2]
Output: 1
Explanation: Minimum start value should be positive. 

Example 3:

复制代码
Input: nums = [1,-2,-3]
Output: 5

Constraints:

  • 1 <= nums.length <= 100
  • -100 <= nums[i] <= 100

这道题说是从一个startValue开始,从左往右加数组里的数字,要保证每次加完这个值都不小于1。翻译过来就是,求这个数组的prefix sum最小的那个数,如果最小的就不小于1,那就return最小的startValue which is 1,如果最小的小于1,那就return (-sum) + 1

复制代码
class Solution {
    public int minStartValue(int[] nums) {
        int min = Integer.MAX_VALUE;
        int sum = 0;
        for (int num : nums) {
            sum += num;
            min = Math.min(min, sum);
        }
        return min >= 1 ? 1 : 1 - min;
    }
}
相关推荐
载数而行520几秒前
算法集训1:模拟,枚举,错误分析,前缀和,差分
算法
hehelm17 分钟前
vector模拟实现
前端·javascript·算法
Tina学编程1 小时前
[HOT 100]今日一练------划分字母区间
算法·hot 100
RTC老炮1 小时前
RaptorQ前向纠错算法架构分析
网络·算法·架构·webrtc
故事和你911 小时前
洛谷-数据结构1-1-线性表2
开发语言·数据结构·算法·动态规划·图论
m0_555762901 小时前
从原始信号到IQ图的数学公式推导
算法
靠沿1 小时前
【递归、搜索与回溯算法】专题四——综合练习
算法·深度优先
qeen872 小时前
【数据结构】栈及其C语言模拟实现
c语言·数据结构·学习·
北顾笙9802 小时前
day26-数据结构力扣
数据结构·算法·leetcode
自我意识的多元宇宙2 小时前
树与二叉树--树的性质
数据结构