-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
54 lines (48 loc) · 1.61 KB
/
main.go
File metadata and controls
54 lines (48 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Source: https://leetcode.com/problems/maximum-absolute-sum-of-any-subarray
// Title: Maximum Absolute Sum of Any Subarray
// Difficulty: Medium
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// You are given an integer array `nums`. The **absolute sum** of a subarray `[nums_l, nums_{l+1}, ..., nums_{r-1}, nums_r]` is `abs(nums_l + nums_{l+1} + ... + nums_{r-1} + nums_r)`.
//
// 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 <= 10^5`
// - `-10^4 <= nums[i] <= 10^4`
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package main
func maxAbsoluteSum(nums []int) int {
maxSum, minSum := 0, 0
maxPrefixSum, minPrefixSum := 0, 0
for _, num := range nums {
maxPrefixSum = max(maxPrefixSum+num, num)
minPrefixSum = min(minPrefixSum+num, num)
maxSum = max(maxSum, maxPrefixSum)
minSum = min(minSum, minPrefixSum)
}
return max(maxSum, -minSum)
}