ID | Title | Difficulty | |
---|---|---|---|
Loading... |
368. Largest Divisible Subset
Medium
LeetCode
Array, Math, Dynamic Programming, Sorting
Problem
Given a set of distinct positive integers nums, return the largest subset answer such that every pair (answer[i], answer[j]) of elements in this subset satisfies:
answer[i] % answer[j] == 0, or answer[j] % answer[i] == 0 If there are multiple solutions, return any of them.
Example 1:
Input: nums = [1,2,3]
Output: [1,2]
Explanation: [1,3] is also accepted.
Example 2:
Input: nums = [1,2,4,8]
Output: [1,2,4,8]
Code
class Solution {
public List<Integer> largestDivisibleSubset(int[] nums) {
if(nums == null || nums.length == 0) return new ArrayList<>();
Arrays.sort(nums);
int[] count = new int[nums.length];
int[] pre = new int[nums.length];
int max = 0;
int index = -1;
for(int i = 0; i < nums.length; i++){
count[i] = 1;
pre[i] = -1;
for(int j = i - 1; j >= 0; j--){
if(nums[i] % nums[j] == 0){
if(1 + count[j] > count[i]){
count[i] = count[j] + 1;
pre[i] = j;
}
}
}
if(count[i] > max){
max = count[i];
index = i;
}
}
List<Integer> res = new ArrayList<>();
while(index != -1){
res.add(nums[index]);
index = pre[index];
}
return res;
}
}
按 <- 键看上一题!
367. Valid Perfect Square
按 -> 键看下一题!
369. Plus One Linked List