LeetCode 198. House Robber

xiaoxiao2021-02-28  21

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 max (int a , int b) {         return a > b ? a : b;     }     int rob(vector<int>& nums) {         int size = nums.size();         if (size == 0) return 0;         if (size == 1) return nums[0];         int a[size + 1];         a[1] = nums[0];         a[2] = max (nums[0] , nums[1]);         for (int i = 3 ; i <= size ; i++) {             a[i] = max(a[i-1] , a[i-2] + nums[i - 1]);         }         return a[size];     } };
转载请注明原文地址: https://www.6miu.com/read-1649981.html

最新回复(0)