Problem Brief
Maximum Even Sum Subsequence
FULLTIMEOA
Given a array of n positive and negative integers, find the subsequence with the maximum even sum and display that even sum.
1Example 1
Input
arr = [-2, 2, -3, 1, 3]
Output
6
Explanation
The longest subsequence with even sum is 2, 1 and 3.
2Example 2
Input
arr = [-2, 2, -3, 4, 5]
Output
8
Explanation
The longest subsequence with even sum is 2, -3, 4 and 5.