作者简介:硕风和炜,CSDN-Java领域新星创作者,保研|国家奖学金|高中学习JAVA|大学完善JAVA开发技术栈|面试刷题|面经八股文|经验分享|好用的网站工具分享
座右铭:人生如棋,我愿为卒,行动虽慢,可谁曾见我后退一步?
剑指 Offer II 089. 房屋偷盗
198. 打家劫舍
一个专业的小偷,计划偷窃沿街的房屋。每间房内都藏有一定的现金,影响小偷偷窃的唯一制约因素就是相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。
给定一个代表每个房屋存放金额的非负整数数组 nums ,请计算 不触动警报装置的情况下 ,一夜之内能够偷窃到的最高金额。
示例 1:
输入:nums = [1,2,3,1]
输出:4
解释:偷窃 1 号房屋 (金额 = 1) ,然后偷窃 3 号房屋 (金额 = 3)。
偷窃到的最高金额 = 1 + 3 = 4 。
示例 2:
输入:nums = [2,7,9,3,1]
输出:12
解释:偷窃 1 号房屋 (金额 = 2), 偷窃 3 号房屋 (金额 = 9),接着偷窃 5 号房屋 (金额 = 1)。
偷窃到的最高金额 = 2 + 9 + 1 = 12 。
提示:
1 <= nums.length <= 100
0 <= nums[i] <= 400
class Solution {
public int rob(int[] nums) {
int n=nums.length;
return process(0,n,nums);
}
public int process(int index,int n,int[] nums){
if(index>=n) return 0;
return Math.max(process(index+1,n,nums),process(index+2,n,nums)+nums[index]);
}
}
class Solution {
public int rob(int[] nums) {
int n=nums.length;
int[] dp=new int[n+1];
Arrays.fill(dp,-1);
return process(0,n,nums,dp);
}
public int process(int index,int n,int[] nums,int[] dp){
if(index>=n) return 0;
if(dp[index]!=-1) return dp[index];
return dp[index]=Math.max(process(index+1,n,nums,dp),process(index+2,n,nums,dp)+nums[index]);
}
}
class Solution {
public int rob(int[] nums) {
int n=nums.length;
int[] dp=new int[n+10];
for(int index=n-1;index>=0;index--){
dp[index]=Math.max(dp[index+1],dp[index+2]+nums[index]);
}
return dp[0];
}
}
class Solution {
public int rob(int[] nums) {
int a=0,b=0;
for(int index=nums.length-1;index>=0;index--){
int c=Math.max(a,b+nums[index]);
b=a;
a=c;
}
return a;
}
}
最后,我想送给大家一句一直激励我的座右铭,希望可以与大家共勉!