-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0198.house_robber.cpp
56 lines (45 loc) · 1.01 KB
/
0198.house_robber.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <algorithm>
#include <iostream>
#include <cstdio>
#include <vector>
using std::vector;
int rob(vector<int>& nums)
{
int n = nums.size();
if (n == 1) return nums[0];
// f[i]: 到达第 i 个位置的可偷窃最大金额
vector<int> f(n, 0);
f[0] = nums[0];
f[1] = std::max(nums[0], nums[1]);
for (int i = 2; i < n; ++i) {
f[i] = std::max(f[i-1], f[i-2] + nums[i]);
}
return f[n-1];
}
int _rob(vector<int>& nums)
{
int n = nums.size();
if (n == 0) return nums[0];
vector<int> dp(n, 0);
dp[0] = nums[0];
dp[1] = std::max(nums[1], nums[0]);
for (int i = 2; i < n; ++i) {
dp[i] = std::max(dp[i-1], dp[i-2] + nums[i]);
}
return dp[n-1];
}
int main()
{
#ifdef LOCAL
freopen("0198.in", "r", stdin);
#endif
int n = 0;
while (std::cin >> n) {
std::vector<int> nums(n, 0);
for (int i = 0; i < n; ++i) {
std::cin >> nums[i];
}
std::cout << rob(nums) << std::endl;
}
return 0;
}