Hackerrank: Max Array Sum Solution
Approach
A subset can be one element only
Base cases:
- max at 0 is
max(arr[0], 0)
- max at 1 is
max(arr[0], arr[1], 0)
Then cases:
- max at
i
ismax(arr[i], maxAt[i - 1], maxAt[i - 2] + arr[i], 0)
Tail 0 on every max because negative value is rejected
Implementation
1function maxSubsetSum(arr) {2 const N = arr.length3 const maxes = Array(N).fill(0)45 maxes[0] = Math.max(arr[0], 0)6 maxes[1] = Math.max(arr[0], arr[1], 0)7 for (let i = 2; i < N; i++) {8 maxes[i] = Math.max(arr[i], maxes[i - 1], maxes[i - 2] + arr[i], 0)9 }1011 return maxes[N - 1]12}
Comments
Loading comments...
Tags
hackerrank
dynamic programming
Apply and earn a $2,500 bonus once you're hired on your first job!
Clients from the Fortune 500 to Silicon Valley startups
Choose your own rate, get paid on time
From hourly, part-time, to full-time positions
Flexible remote working environment
A lot of open JavaScript jobs!!
Fact corner: Referred talent are 5x more likely to pass the Toptal screening process than the average applicant.
Still hesitate? Read HoningJS author's guide on dealing with Toptal interview process.
Next Post
Codility: TieRopes
Lesson 16 Greedy Algorithms