A professional robber is planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping him from robbing each of them is that adjacent houses have security system connected
All Answers
total answers (1)
Example
Algorithm:
The problem can be cut down to sub-problem of finding whether to rob from ith house or not.
Now, in case of taking decision whether to rob from ith house or not, it completely depends on where the money maximizes. Since, adjacent houses are connected, the robber can't rob two adjacent house. Either he can rob from (i-1)th house or he can rob from ith house after robbing from (i-2)th house. To maximize the money simply find which results in maximum amount. In terms of recursive relation we can write,
This recursive relation ultimately yields to the maximum amount that can be robbed.
We can form our DP matrix and convert the recursive relation in memorization.
Pre-requisite:
A 1D array where mone stashed in houses are stored. Let the array to be money
Steps:
Example with explanation:
That gives the maximum amount that can be robbed without breaking the security.
C++ Implementation:
Output
need an explanation for this answer? contact us directly to get an explanation for this answer