LeetCode-in-Java

740. Delete and Earn

Medium

You are given an integer array nums. You want to maximize the number of points you get by performing the following operation any number of times:

Return the maximum number of points you can earn by applying the above operation some number of times.

Example 1:

Input: nums = [3,4,2]

Output: 6

Explanation: You can perform the following operations:

You earn a total of 6 points.

Example 2:

Input: nums = [2,2,3,3,3,4]

Output: 9

Explanation: You can perform the following operations:

You earn a total of 9 points.

Constraints:

Solution

public class Solution {
    public int deleteAndEarn(int[] nums) {
        int[] sum = new int[10001];
        int min = 10001;
        int max = 0;
        for (int num : nums) {
            sum[num] += num;
            min = Math.min(num, min);
            max = Math.max(num, max);
        }

        int[] dp = new int[max + 1];
        dp[min] = sum[min];
        for (int i = min + 1; i <= max; i++) {
            dp[i] = Math.max(dp[i - 1], dp[i - 2] + sum[i]);
        }
        return dp[max];
    }
}