728x90
1. 문제 요약
1부터 N까지의 숫자들 중 M개를 뽑아 조합(Combination)을 만드는 문제입니다.
2. 접근 방법
조합을 생성하는 대표적인 방법으로 재귀함수를 이용할 수 있습니다.
3. 파이썬
from sys import stdin
input = stdin.readline
def solution(start: int, depth: int):
if depth == M:
print(*arr)
return
for i in range(start, N):
if not visit[i]:
visit[i] = True
arr[depth] = i + 1
solution(i + 1, depth + 1)
visit[i] = False
N, M = map(int, input().split())
arr = [0] * M
visit = [False] * N
solution(0, 0)
추가로 itertools.combinations 함수를 이용할 수 도 있습니다.
4. 자바
static int N, M;
static int[] arr;
static boolean[] visit;
static void solution(int start, int depth) {
if (depth == M) {
for (int i : arr) {
sb.append(i).append(' ');
}
sb.append('\n');
return;
}
for (int i = start; i < N; i++) {
if (!visit[i]) {
visit[i] = true;
arr[depth] = i + 1;
solution(i + 1, depth + 1);
visit[i] = false;
}
}
}
5. 전체 코드
728x90
'개발일지 > Algorithm' 카테고리의 다른 글
백준 - 15652 N과 M (4) [백트래킹] (2) | 2023.09.28 |
---|---|
백준 - 15651 N과 M (3) [백트래킹] (0) | 2023.09.28 |
백준 - 15649 N과 M (1) [순열] (0) | 2023.09.26 |
백준 자바1위 - 17611 직각다각형 [누적합][이모스] (0) | 2023.09.25 |
백준 - 3020 개똥벌레 [누적합][이모스] (0) | 2023.09.24 |