forked from illuz/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAC_dp_n.cpp
41 lines (34 loc) · 777 Bytes
/
AC_dp_n.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
/*
* Author: illuz <iilluzen[at]gmail.com>
* File: AC_dp_n.cpp
* Create Date: 2015-03-31 21:12:08
* Descripton: dp[i] = max(dp[i - 1], dp[i - 2] + num[i])
* dp[i]->cur, dp[i-1]->pre, dp[i-2]->ppre
*/
#include <bits/stdc++.h>
using namespace std;
const int N = 0;
class Solution {
public:
int rob(vector<int> &num) {
if (num.empty())
return 0;
int ppre = 0, pre = 0, cur = 0;
for (auto n : num) {
cur = max(pre, ppre + n);
ppre = pre;
pre = cur;
}
return max(pre, ppre);
}
};
int main() {
int n;
Solution s;
cin >> n;
vector<int> num(n);
for (auto &i : num)
cin >> i;
cout << s.rob(num) << endl;
return 0;
}