-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1800.最大升序子数组和.go
92 lines (87 loc) · 1.71 KB
/
1800.最大升序子数组和.go
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
* @lc app=leetcode.cn id=1800 lang=golang
*
* [1800] 最大升序子数组和
*
* https://leetcode-cn.com/problems/maximum-ascending-subarray-sum/description/
*
* algorithms
* Easy (67.55%)
* Likes: 25
* Dislikes: 0
* Total Accepted: 11.9K
* Total Submissions: 17.7K
* Testcase Example: '[10,20,30,5,10,50]'
*
* 给你一个正整数组成的数组 nums ,返回 nums 中一个 升序 子数组的最大可能元素和。
*
* 子数组是数组中的一个连续数字序列。
*
* 已知子数组 [numsl, numsl+1, ..., numsr-1, numsr] ,若对所有 i(l ),numsi < numsi+1
* 都成立,则称这一子数组为 升序 子数组。注意,大小为 1 的子数组也视作 升序 子数组。
*
*
*
* 示例 1:
*
*
* 输入:nums = [10,20,30,5,10,50]
* 输出:65
* 解释:[5,10,50] 是元素和最大的升序子数组,最大元素和为 65 。
*
*
* 示例 2:
*
*
* 输入:nums = [10,20,30,40,50]
* 输出:150
* 解释:[10,20,30,40,50] 是元素和最大的升序子数组,最大元素和为 150 。
*
*
* 示例 3:
*
*
* 输入:nums = [12,17,15,13,10,11,12]
* 输出:33
* 解释:[10,11,12] 是元素和最大的升序子数组,最大元素和为 33 。
*
*
* 示例 4:
*
*
* 输入:nums = [100,10,1]
* 输出:100
*
*
*
*
* 提示:
*
*
* 1
* 1
*
*
*/
// @lc code=start
func maxAscendingSum(nums []int) int {
maxSum := nums[0]
preSum := nums[0]
for i := 1; i < len(nums); i++ {
if nums[i] <= nums[i-1] {
preSum = nums[i]
} else {
curSum := preSum + nums[i]
maxSum = max(maxSum, curSum)
preSum = curSum
}
}
return maxSum
}
func max(x, y int) int {
if x > y {
return x
}
return y
}
// @lc code=end