码迷,mamicode.com
首页 > 其他好文 > 详细

(leetcode)House Robber

时间:2015-08-09 00:13:33      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

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.

使用动态规划的做法:

设置一个数组maxv[n]记录,当到达第i个时候,最大值是多少

 1 class Solution {
 2 public:
 3     int rob(vector<int>& nums) {
 4         int n = nums.size();
 5         if(nums.size() == 0) return 0;
 6         if(nums.size() == 1) return nums[0];
 7         int maxv[n];
 8         maxv[0] = nums[0];
 9         maxv[1] = max(nums[0],nums[1]);
10         
11         for(int i = 2;i < nums.size();++i)
12         {
13             maxv[i] = max(maxv[i-2]+nums[i],maxv[i-1]);
14         }
15         return maxv[n-1];
16     }
17 };

 

(leetcode)House Robber

标签:

原文地址:http://www.cnblogs.com/chdxiaoming/p/4714084.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!