Letcode House Robber 시리즈
2282 단어 동적 기획
Leetcode #198 House Robber
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.
class Solution {
public:
int rob(vector &num) {
int n = num.size();
if(n == 0) return 0;
if(n == 1) return num[0];
vector dp(n, 0);
dp[0] = num[0]; dp[1] = max(num[0], num[1]);
for(int i = 2; i < n; i ++)
dp[i] = max(dp[i-2] + num[i], dp[i-1]);
return dp[n-1];
}
};
Leetcode #213 House Robber II
Note: This is an extension of House Robber.
After robbing those houses on that street, the thief has found himself a new place for his thievery so that he will not get too much attention. This time, all houses at this place are arranged in a circle. That means the first house is the neighbor of the last one. Meanwhile, the security system for these houses remain the same as for those in the previous street.
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.
class Solution {
public:
int rob(vector &num) {
int n = num.size();
if(n == 0) return 0;
if(n == 1) return num[0];
if(n == 2) return max(num[0], num[1]);
vector dp(n, 0);
dp[1] = num[1]; dp[2] = max(num[1], num[2]);
for(int i = 3; i < n; i ++)
dp[i] = max(dp[i-2] + num[i], dp[i-1]);
int ans = dp[n-1];
dp[0] = num[0]; dp[1] = max(num[0], num[1]);
for(int i = 2; i < n - 1; i ++)
dp[i] = max(dp[i-2] + num[i], dp[i-1]);
ans = max(ans, dp[n-2]);
return ans;
}
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
01 가방, 완전 가방, 다중 가방 dp(동적 기획 입문 dp)01 가방은 2진법으로 직접 표시할 수 있지만 데이터 양이 너무 많으면 시간을 초과하는 것이 폭력이다.01 가방의 사상은 바로 이 물품에 대해 내가 넣은 가치가 큰지 안 넣은 가치가 큰지 비교하여 방정식 f[i][v...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.