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;
}
}