LeetCode.368 Largest Divisible Subset(经典DP问题)

题目:

Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfies: Si % Sj = 0 or Sj % Si = 0.

If there are multiple solutions, return any subset is fine.

Example 1:

nums: [1,2,3]

Result: [1,2] (of course, [1,3] will also be ok)

Example 2:

nums: [1,2,4,8]

Result: [1,2,4,8]

分析(经典DP问题):

class Solution {
    public List<Integer> largestDivisibleSubset(int[] nums) {
        //求最长子串,满足任意一对%为0
        //思路:经典的DP问题
        
        List<Integer> list=new ArrayList<>();
        if(nums.length==0||nums==null) return list;
        //对数组进行排序
        Arrays.sort(nums);
        int [] dp=new int[nums.length];
        Arrays.fill(dp,1);
        
        //求最长长度的集合
        int max=1;
        for(int i=1;i<nums.length;i++){
            for(int j=i-1;j>=0;j--){
                if(nums[i]%nums[j]==0){
                    dp[i]=Math.max(dp[i],dp[j]+1);
                    //记录最长的子集
                    max=Math.max(max,dp[i]);
                }
            }
        }
    
        int last = 0;
        //从后往前查找,直到找到max,那么前面便包含属于其的子集
        for (int i = nums.length - 1; i >= 0 && max >= 0; i--) {
            if (dp[i] == max && last % nums[i] == 0) {
                last = nums[i];
                //从末尾插入
                list.add(0, nums[i]);
                max--;
            }
        }
        
        return list;
        
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值