-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path740.js
31 lines (30 loc) · 813 Bytes
/
740.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
DP: where the next use/avoid choice depends on whether the last element was used
*/
var deleteAndEarn = function(nums) {
let cnt = {};
let list = [];
for(let i=0;i<nums.length;i++){
if(!cnt[nums[i]]){
cnt[nums[i]]=0;
}
cnt[nums[i]]+=nums[i];
}
for(let num in cnt){
list.push({n:parseInt(num),s:cnt[num]});
}
list.sort((a,b)=>{return a.n-b.n;});
let maxSum = 0;
let use=0,avoid=0;
for(let i=0;i<list.length;i++){
if(i===0||list[i].n!==list[i-1].n+1){//last element is not adjacent
use = list[i].s+maxSum;
avoid = maxSum;
}else{ //adjacent
use = list[i].s+avoid;
avoid = maxSum;
}
maxSum = Math.max(use,avoid)
}
return maxSum;
};