Day31 | 139. 单词拆分、198. 打家劫舍、213. 打家劫舍 II、337. 打家劫舍 III

139. 单词拆分

题目链接:139. 单词拆分 - 力扣(LeetCode)

题目难度:中等

代码:

class Solution {
    public boolean wordBreak(String s, List<String> wordDict) {
        HashSet<String> set=new HashSet<>(wordDict);
        boolean[] valid=new boolean[s.length()+1];
        valid[0]=true;
        for(int i=1;i<=s.length();i++){
            for(int j=0;j<i;j++){
                if(set.contains(s.substring(j,i))&&valid[j])
                    valid[i]=true;
            }
        }
        return valid[s.length()];
    }
}

198. 打家劫舍

题目链接:198. 打家劫舍 - 力扣(LeetCode)

题目难度:中等

代码:

class Solution {
    public int rob(int[] nums) {
        if(nums.length==1) return nums[0];
        int[] dp=new int[nums.length];
        dp[0]=nums[0];
        dp[1]=Math.max(nums[0],nums[1]);
        for(int i=2;i<nums.length;i++){
            dp[i]=Math.max(dp[i-1],dp[i-2]+nums[i]);
        }
        return dp[nums.length-1];
    }
}

213. 打家劫舍 II

题目链接:213. 打家劫舍 II - 力扣(LeetCode)

题目难度:中等

代码:

class Solution {
    public int rob(int[] nums) {
        if(nums.length==1) return nums[0];
        int len = nums.length;
        return Math.max(robAction(nums,0,len-1),robAction(nums,1,len));
    }
    public int robAction(int[] nums,int start,int end){
        int x = 0, y = 0, z = 0;
        for (int i = start; i < end; i++) {
            y = z;
            z = Math.max(y, x + nums[i]);
            x = y;
        }
        return z;
    }
}

337. 打家劫舍 III

题目链接:337. 打家劫舍 III - 力扣(LeetCode)

题目难度:中等

代码:

class Solution {
    public int rob(TreeNode root) {
        int[] res=robAction(root);
        return Math.max(res[0],res[1]);
    }

    int[] robAction(TreeNode root){
        int res[]=new int[2];
        if(root==null)
            return res;
        int left[]=robAction(root.left);
        int right[]=robAction(root.right);
        res[0]=Math.max(left[0],left[1])+Math.max(right[0],right[1]);
        res[1]=root.val+left[0]+right[0];
        return res;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值