-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path198.cpp
33 lines (32 loc) · 811 Bytes
/
198.cpp
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
32
33
class Solution {
public:
int rob(vector<int>& nums) {
int n=nums.size();
if(n==0)
{
return 0;
}
else if(n==1){
return nums[0];
}
else if(n==2){
return max(nums[1],nums[0]);
}
else if(n==3){
return max( (nums[0]+nums[2]) , nums[1]);
}
else
{
int A[n+1];
A[0]=0;
A[1]=nums[0];
A[2]=max(nums[1],nums[0]);
A[3]=max( (nums[0]+nums[2]) , nums[1]);
A[4]=max( max ( (nums[3]+nums[0]),(nums[1]+nums[3]) ), (nums[0]+nums[2]) );
for(int i=5;i<=n;i++){
A[i]= max ( A[i-1] , max ( (A[i-3] + nums[i-1] ) , ( A[i-2] + nums[i-1] ) ) );
}
return A[n];
}
}
};