728x90
1. 문제 요약
1부터 N까지의 숫자들 중 M개를 뽑아 수열을 생성하라.
같은 수를 여러 번 골라도 된다.
2. 접근 방법
대표적인 방법으로 재귀함수를 이용할 수 있습니다.
3. 파이썬
from sys import stdin
input = stdin.readline
def solution(depth: int):
if depth == M:
# print(*arr)
print(' '.join(map(str, arr))) # 위 방식보다 좀 더 효율적입니다.
return
for i in range(1, N + 1):
arr[depth] = i
solution(depth + 1)
N, M = map(int, input().split())
arr = [0] * M
solution(0)
4. 자바
static int N, M;
static int[] arr; // new int[M]
static StringBuilder sb = new StringBuilder();
static void solution(int depth) {
if (depth == M) {
for (int i : arr) {
sb.append(i).append(' ');
}
sb.append('\n');
return;
}
for (int i = 1; i <= N; i++) {
arr[depth] = i;
solution(depth + 1);
}
}
5. 전체 코드
728x90
'개발일지 > Algorithm' 카테고리의 다른 글
백준 - 15654 N과 M (5) [순열] (0) | 2023.09.28 |
---|---|
백준 - 15652 N과 M (4) [백트래킹] (2) | 2023.09.28 |
백준 - 15650 N과 M (2) [조합] (0) | 2023.09.27 |
백준 - 15649 N과 M (1) [순열] (0) | 2023.09.26 |
백준 자바1위 - 17611 직각다각형 [누적합][이모스] (0) | 2023.09.25 |