LeetCode 740. Delete and Earn
Given an array nums
of integers, you can perform operations on the array.
In each operation, you pick any nums[i]
and delete it to earn nums[i]
points. After, you must delete every element equal to nums[i] - 1
or nums[i] + 1
.
You start with 0 points. Return the maximum number of points you can earn by applying such operations.
Example 1:
1 | Input: nums = [3, 4, 2] |
Example 2:
1 | Input: nums = [2, 2, 3, 3, 3, 4] |
Note:
The length of nums
is at most 20000
.
Each element nums[i]
is an integer in the range [1, 10000]
.
动态规划问题,对于nums
中出现的最大的数n
来说,有两种可能:
- 能挣到点数,那么最大的分数就是
n×n出现的次数
+最大值为n-2时的分数
- 不能挣到点数,那么最大值就是最大值为
n-1
的分数
因为nums
的元素取值范围为[1,10000]
所以可以用哈希表来保存每个数字出现了多少次。
1 | class Solution { |