티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 368. Largest Divisible Subset
Jaime.Lee 2021. 11. 16. 10:30Problem
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]
Constraints:
- 1 <= nums.length <= 1000
- 1 <= nums[i] <= 2 * 10^9
- All the integers in nums are unique.
Solution
주어진 배열의 가장 큰 부분 배열을 반환하는데, 이 때 조건은 부분 배열의 모든 Pair가 약수 관계여야 한다는 것입니다.
배열을 정렬한 뒤 탐색하면서 현재 인덱스와 이전 인덱스들에 해당하는 값들을 비교하여 약수 관계가 성립할 때 총 갯수와 이전 인덱스를 매번 갱신하는 형태로 DP를 이용해 풀 수 있습니다.
갱신할 때 조건은 이전 값 보다 높아야 한다는 것인데 최대 크기의 배열을 구하기 위함입니다.
package io.lcalmsky.leetcode.largest_divisible_subset;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Solution {
public List<Integer> largestDivisibleSubset(int[] nums) {
Arrays.sort(nums);
int[] count = new int[nums.length];
int[] previous = new int[nums.length];
int max = 0;
int index = -1;
for (int i = 0; i < nums.length; i++) {
count[i] = 1;
previous[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;
previous[i] = j;
}
}
}
if (count[i] > max) {
max = count[i];
index = i;
}
}
List<Integer> result = new ArrayList<>();
while (index != -1) {
result.add(nums[index]);
index = previous[index];
}
return result;
}
}
Test
package io.lcalmsky.leetcode.largest_divisible_subset;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.util.List;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(new int[]{1, 2, 3}, List.of(1, 2)),
() -> test(new int[]{1, 2, 4, 8}, List.of(1, 2, 4, 8))
);
}
private void test(int[] given, List<Integer> expected) {
// when
Solution solution = new Solution();
List<Integer> actual = solution.largestDivisibleSubset(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode - Daily Challenge] 461. Hamming Distance (0) | 2021.11.21 |
---|---|
[LeetCode - Daily Challenge] 62. Unique Paths (0) | 2021.11.18 |
[LeetCode - Daily Challenge] 1286. Iterator for Combination (0) | 2021.11.15 |
[LeetCode - Daily Challenge] 739. Daily Temperatures (0) | 2021.11.14 |
[LeetCode - Daily Challenge] 203. Remove Linked List Elements (0) | 2021.11.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Spring Boot
- Spring Boot Tutorial
- 스프링 부트 애플리케이션
- spring boot application
- Spring Boot JPA
- proto3
- 알고리즘
- 헥사고날 아키텍처
- 스프링 부트
- Spring Data JPA
- JPA
- 스프링 데이터 jpa
- QueryDSL
- Java
- leetcode
- 함께 자라기
- spring boot jwt
- intellij
- Jackson
- r
- @ManyToOne
- 함께 자라기 후기
- gRPC
- JSON
- spring boot app
- 스프링 부트 회원 가입
- 클린 아키텍처
- 스프링 부트 튜토리얼
- Linux
- 스프링부트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함