티스토리 뷰
Problem
Given a collection of numbers, nums, that might contain duplicates, return all possible unique permutations in any order.
Example 1:
Input: nums = [1,1,2]
Output:
[[1,1,2],
[1,2,1],
[2,1,1]]
Example 2:
Input: nums = [1,2,3]
Output: [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
Constraints:
- 1 <= nums.length <= 8
- -10 <= nums[i] <= 10
Solution
중복이 포함될 수 있는 정수 배열이 주어지면, 가능한 모든 순열을 반환하는 문제입니다.
백트래킹을 이용해 풀 수 있습니다.
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class Solution {
public List<List<Integer>> permuteUnique(int[] nums) {
List<List<Integer>> result = new ArrayList<>();
helper(0, nums, result);
return new ArrayList<>(result);
}
private void helper(int start, int[] nums, List<List<Integer>> result) {
if (start == nums.length - 1) { // (1)
List<Integer> list = new ArrayList<>();
for (int num : nums) {
list.add(num);
}
result.add(list);
return;
}
Set<Integer> set = new HashSet<>(); // (2)
for (int i = start; i < nums.length; i++) { // (3)
if (!set.add(nums[i])) { // (4)
continue;
}
swap(nums, i, start); // (5)
helper(start + 1, nums, result); // (6)
swap(nums, i, start); // (7)
}
}
private void swap(int[] nums, int i, int start) {
int tmp = nums[i];
nums[i] = nums[start];
nums[start] = tmp;
}
}
- 인덱스가 배열의 길이가 되었을 때 배열의 정수를 모두 리스트에 추가하고, 해당 리스트를 결과 리스트에 추가합니다.
- 이미 순열에 포함되었는지를 체크하기 위한 Set 입니다.
- 시작 인덱스부터 반복합니다.
- 이미 순열에 포함된 경우 아무 것도 하지 않습니다.
- 순열에 포함되지 않은 수일 경우 현재 숫자와 시작 인덱스의 숫자를 swap 해줍니다.
- 시작 인덱스를 증가시키고 재귀호출 합니다.
- 현재 숫자와 시작 인덱스의 숫자를 다시 swap 합니다.
Test
package io.lcalmsky.leetcode.permutations_ii;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.List;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(new int[]{1, 1, 2}, List.of(
List.of(1, 1, 2),
List.of(1, 2, 1),
List.of(2, 1, 1)
)),
() -> test(new int[]{1, 2, 3}, List.of(
List.of(1, 2, 3),
List.of(1, 3, 2),
List.of(2, 1, 3),
List.of(2, 3, 1),
List.of(3, 1, 2),
List.of(3, 2, 1)
))
);
}
private void test(int[] given, List<List<Integer>> expected) {
// when
Solution solution = new Solution();
List<List<Integer>> actual = solution.permuteUnique(given);
// then
assertTrue(actual.containsAll(expected));
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree (0) | 2022.06.04 |
---|---|
191. Number of 1 Bits (0) | 2022.06.03 |
1302. Deepest Leaves Sum (0) | 2022.05.27 |
329. Longest Increasing Path in a Matrix (0) | 2022.05.26 |
1091. Shortest Path in Binary Matrix (0) | 2022.05.23 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스프링 부트 튜토리얼
- Spring Data JPA
- spring boot app
- QueryDSL
- 스프링부트
- leetcode
- Spring Boot Tutorial
- JPA
- 클린 아키텍처
- 스프링 데이터 jpa
- 헥사고날 아키텍처
- r
- Spring Boot JPA
- Java
- 스프링 부트 애플리케이션
- gRPC
- 함께 자라기 후기
- Jackson
- Spring Boot
- spring boot jwt
- 알고리즘
- spring boot application
- Linux
- JSON
- 스프링 부트 회원 가입
- 함께 자라기
- proto3
- intellij
- @ManyToOne
- 스프링 부트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함