LeetCode - House Robber
5161 단어 LeetCode
2015.4.17 05:52
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security system connected and it will automatically contact the police if two adjacent houses were broken into on the same night.
Given a list of non-negative integers representing the amount of money of each house, determine the maximum amount of money you can rob tonight without alerting the police.
Solution:
This is a simple dynamic programming problem, which can be solved either in-place or using O(1) extra space.
Please see the code below.
Accepted code:
1 // 1WA, 1AC, O(1) space.
2 #include <algorithm>
3 using namespace std;
4
5 class Solution {
6 public:
7 int rob(vector<int> &num) {
8 int n = num.size();
9 int i;
10
11 if (n == 0) {
12 return 0;
13 } else if (n == 1) {
14 return num[0];
15 } else if (n == 2) {
16 return max(num[0], num[1]);
17 }
18
19 int ans;
20
21 ans = max(num[0], num[1]);
22 num[2] = num[0] + num[2];
23 ans = max(ans, num[2]);
24 for (i = 3; i < n; ++i) {
25 num[i] = max(num[i - 2], num[i - 3]) + num[i];
26 ans = max(ans, num[i]);
27 }
28
29 return ans;
30 }
31 };
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.