LeetCode 1749 Maximum Absolute Sum of Any Subarray (dp)

244 篇文章 0 订阅
177 篇文章 0 订阅

You are given an integer array nums. The absolute sum of a subarray [numsl, numsl+1, ..., numsr-1, numsr] is abs(numsl + numsl+1 + ... + numsr-1 + numsr).

Return the maximum absolute sum of any (possibly empty) subarray of nums.

Note that abs(x) is defined as follows:

  • If x is a negative integer, then abs(x) = -x.
  • If x is a non-negative integer, then abs(x) = x.

Example 1:

Input: nums = [1,-3,2,3,-4]
Output: 5
Explanation: The subarray [2,3] has absolute sum = abs(2+3) = abs(5) = 5.

Example 2:

Input: nums = [2,-5,1,-4,3,-2]
Output: 8
Explanation: The subarray [-5,1,-4] has absolute sum = abs(-5+1-4) = abs(-8) = 8.

Constraints:

  • 1 <= nums.length <= 105
  • -104 <= nums[i] <= 104

题目链接:https://leetcode.com/problems/maximum-absolute-sum-of-any-subarray/

题目大意:求最大的连续和的绝对值

题目分析:求最大最小连续和即可

3ms,时间击败92.71%

class Solution {
    public int maxAbsoluteSum(int[] nums) {
        int curMi = 0, curMa = 0, ma = Integer.MIN_VALUE, mi = Integer.MAX_VALUE;
        for (int num : nums) {
            if (curMa + num <= 0) {
                curMa = 0;
            } else {
                curMa += num;
            }
            if (curMi + num >= 0) {
                curMi = 0;
            } else {
                curMi += num;
            }
            ma = Math.max(curMa, ma);
            mi = Math.min(curMi, mi);
        }
        return Math.max(ma, -mi);
    }
}

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值