国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Leetcode[368] Largest Divisible Subset

springDevBird / 816人閱讀

摘要:讓數組從小到大排序。因為如果一個數能被加到這個中的話,說明這個數能被這個中的最大的數整除。同樣可以用一個數組來記錄之前搜索過的。,表示的是我們搜索的路徑是從到。初始化這個位置是頭結點。說明是,并沒有是當前最大的里的最大值。

LeetCode[368] Largest Divisible Subset

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

復雜度
O(N^2),O(N)

思路
先要sort這個數組。讓數組從小到大排序。因為如果一個數能被加到這個list中的話,說明這個數能被這個list中的最大的數整除。所以需要先sortlist。

同樣可以用一個數組來記錄之前搜索過的path。prev[i] = j,表示的是我們搜索的路徑是從j到i。同樣用來保存搜索路徑的方法還有,用一個list然后進行backtracking,也可以用來記錄。

同樣的應用還可以用在union find上面。

代碼

public List largestDivisibleSubset(int[] nums) {
    List res = new ArrayList();
    if(nums == null || nums.length == 0) return res;
    int[] dp = new int[nums.length]; 
    // 保留一個數組的里面的數的Path的方法,可以用數組存index這樣做。
    int[] prev = new int[nums.length]; 
    Arrays.sort(nums);
    int max = 0, index = 0;
    for (int i = 0; i < nums.length; i++){
        dp[i] = 1;
        // 初始化這個位置是頭結點。說明prev是-1,并沒有parent node.
        prev[i] = -1;
        for (int j = i - 1; j >= 0; j--){
            if (nums[i] % nums[j] == 0 && dp[j] + 1 > dp[i]){
                dp[i] = dp[j] + 1;
                prev[i] = j;
            }
        }
        // dp[i]是當前最大的subset里的最大值。
        if (dp[i] > max){
            max = dp[i];
            index = i;
        }
    }
    while (index != -1){
        res.add(nums[index]);
        index = prev[index];
    }
    return res;
}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/65219.html

相關文章

  • leetcode368. Largest Divisible Subset

    摘要:題目要求假設有一組值唯一的正整數數組,找到元素最多的一個子數組,這個子數組中的任選兩個元素都可以構成或。只要這個數字是前面數字的倍數,則構成的數組的長度則是之前數字構成最長子數組加一。 題目要求 Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj)...

    Honwhy 評論0 收藏0
  • 368. Largest Divisible Subset

    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...

    mmy123456 評論0 收藏0
  • 368. Largest Divisible Subset

    摘要:題目解答參考的里的解法,核心思想從小到大,每一位數都能被比他大的數整除。對于從后往前看,找出每一個可以被它整除的數的數組,并更新它作為從這里開始,往后最大的,記錄下最大數組開始的地方,并把下一個數記在里找出最長的這個數組中的每一個數 題目:Given a set of distinct positive integers, find the largest subset such th...

    source 評論0 收藏0
  • LeetCode[333] Largest BST Subtree

    摘要:復雜度思路考慮對于每一個節點來說,能組成的的。那么并且所以我們需要兩個返回值,一個是這個是不是,另一個是當前的能組成的最大的值。代碼這個能構成一個這個不能構成一個 LeetCode[333] Largest BST Subtree Given a binary tree, find the largest subtree which is a Binary SearchTree (B...

    WrBug 評論0 收藏0
  • [Leetcode] Subset 子集

    摘要:深度優先搜索復雜度時間空間遞歸棧空間思路這道題可以轉化為一個類似二叉樹的深度優先搜索。另外需要先排序以滿足題目要求。新的集合要一個新的,防止修改引用。 Subset I Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must be in n...

    hzc 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<