← All problemsSign in

Maximum Sum

You are given an array of integers. Find the subset of **non-adjacent** elements with the maximum sum. Print the sum. For example, given an array **arr = [-2, 1, 3, -4, 5]**, we have the following possible subsets: Subset Sum [-2, 3, 5] 6 [-2, 3] 1 [-2, -4] -6 [-2, 5] 3 [1, -4] -3 [1, 5] 6 [3, 5] 8 The subset of non-adjacent elements with the maximum sum is

HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17

CodeSearch Tutor

Hints, not spoilers — it won’t hand over the full solution unless you insist.

voice by Sarvam AI

Sign in to chat with the tutor and save your progress.

Sign in to start