首页 > 学院 > 开发设计 > 正文

198. House Robber

2019-11-06 06:17:36
字体:
来源:转载
供稿:网友

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. 思路:动态规划,这个和币值最大化问题一样的状态转移方程 F(n) = max(c + F(n - 2), F(n - 1)), n > 1

class Solution {public: int rob(vector<int>& nums) { int size = nums.size(); int *F = new int[size]; if(size == 0) return 0; else if(size == 1) return nums[0]; F[0] = nums[0], F[1] = max(nums[0], nums[1]); for(int i = 2; i < size; ++i){ F[i] = max(nums[i] + F[i - 2], F[i - 1]); } return F[size - 1]; }};
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表