Problem Description
You are given a 0-indexed integer array nums
and a positive integer x
. You are initially at position 0
in the array and can visit other positions. For each position you visit, you get a score of nums[i]
. However, if you move between positions with different parities, you lose a score of x
. Return the maximum total score you can achieve.
Key Insights
- You can move from position
i
to any positionj
wherei < j
, allowing for a variety of paths through the array. - The score is affected by the parity of the numbers, as moving between positions with different parities incurs a penalty.
- To maximize the score, it is essential to identify groups of numbers with the same parity and sum them efficiently while accounting for any penalties incurred.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
The solution involves iterating through the array while maintaining two sums: one for even-indexed numbers and one for odd-indexed numbers. Starting from the initial position (index 0), we calculate the maximum possible score by considering the total scores of both even and odd groups, applying penalties where necessary based on the last visited position's parity. The algorithm ensures that we can quickly determine the optimal path without needing to check every possible combination.