1800: Maximum-Ascending-Subarray-Sum
Easy
Just iterate through nums
, keeping track of the
current sum using counter
when
nums[i-1] < nums[i]
and the
maximum sum using ans
by making it
equal to the largest value between ans
and
counter
everytime the current subarray
stops ascending.
Code:
class Solution {
public:
int longestMonotonicSubarray(vector<int>& nums) {
int ans = 1;
int counter = 1;
int direction = 0;
for (int i = 1; i < nums.size(); ++i) {
if (nums[i-1] != nums[i]) {
if (direction == ((nums[i-1] < nums[i]) ? 1 : -1)) {
++counter;
} else {
= (nums[i-1] < nums[i]) ? 1 : -1;
direction = max(ans, counter);
ans = 2;
counter }
} else {
= 0;
direction = max(ans, counter);
ans = 0;
counter }
}
= max(ans, counter);
ans return ans;
}
};