摘要:题目解答参考的里的解法,核心思想从小到大,每一位数都能被比他大的数整除。对于从后往前看,找出每一个可以被它整除的数的数组,并更新它作为从这里开始,往后最大的,记录下最大数组开始的地方,并把下一个数记在里找出最长的这个数组中的每一个数
题目:
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]
解答:
参考的discussion里的解法, 核心思想从小到大,每一位数都能被比他大的数整除。
public class Solution { public ListlargestDivisibleSubset(int[] nums) { List result = new ArrayList(); if (nums == null || nums.length == 0) return result; Arrays.sort(nums); int len = nums.length; int[] parent = new int[len]; int[] count = new int[len]; int max = 0, maxIndex = -1; //对于i从后往前看,找出每一个可以被它整除的数的数组,并更新它作为从这里开始,往后最大的subset,记录下最大数组开始的地方,并把下一个数记在parent里 for (int i = len - 1; i >= 0; i--) { for (int j = i; j < len; j++) { if (nums[j] % nums[i] == 0 && count[i] < count[j] + 1) { count[i] = count[j] + 1; parent[i] = j; if (count[i] > max) { max = count[i]; maxIndex = i; } } } } for (int i = 0; i < max; i++) { //找出最长的这个数组中的每一个数 result.add(nums[maxIndex]); maxIndex = parent[maxIndex]; } return result; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/64946.html
摘要:让数组从小到大排序。因为如果一个数能被加到这个中的话,说明这个数能被这个中的最大的数整除。同样可以用一个数组来记录之前搜索过的。,表示的是我们搜索的路径是从到。初始化这个位置是头结点。说明是,并没有是当前最大的里的最大值。 LeetCode[368] Largest Divisible Subset Given a set of distinct positive integers,...
368. Largest Divisible Subset 题目链接:https://leetcode.com/problems... dp记录最大的长度,加parent指针存路径。dp方程是:dp[i] = max(dp[j]) + 1, if nums[i]%nums[j] == 0 public class Solution { public List largestDivisibl...
摘要:题目要求假设有一组值唯一的正整数数组,找到元素最多的一个子数组,这个子数组中的任选两个元素都可以构成或。只要这个数字是前面数字的倍数,则构成的数组的长度则是之前数字构成最长子数组加一。 题目要求 Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj)...
摘要:刷题继续上一期和大家分享了前道题,今天继续来刷解法一解法二解法三解法一解法二解法三解法四解法一解法二解法三解法一解法二解法三解法一解法二解法一解法一解法二解法一解法二解法三解法四解法一解法一源代码下载这十道题的 刷题继续 上一期和大家分享了前10道题,今天继续来刷11~20 Question 11: Write a program which accepts a sequence o...
Problem Find the largest palindrome made from the product of two n-digit numbers. Since the result could be very large, you should return the largest palindrome mod 1337. Example Input: 2Output: 987Ex...
阅读 1002·2023-04-25 15:42
阅读 3594·2021-11-02 14:38
阅读 2890·2021-09-30 09:48
阅读 1426·2021-09-23 11:22
阅读 3387·2021-09-06 15:02
阅读 3188·2021-09-04 16:41
阅读 609·2021-09-02 15:41
阅读 2016·2021-08-26 14:13