문제 설명
조합은 순서에 대한 구분이 따로 없으며 이 조건에서 앞의 문제와 같이 중복을 허용하면 된다.
이를 위해서 기존 조합 문제와는 달리 i에 +1을 하지 않는다.
소스 코드
public class Problem_15652 {
private static int n;
private static int m;
private static int[] arr;
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
n = scanner.nextInt();
m = scanner.nextInt();
arr = new int[m];
dfs(1, 0);
}
private static void dfs(int index, int depth) {
if (depth == m) {
for (int i = 0; i < m; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
return;
}
for (int i = index; i <= n; i++) {
arr[depth] = i;
dfs(i, depth + 1);
}
}
}
Code Link
'CS > Algorithm' 카테고리의 다른 글
(알고리즘) boj - 치킨배달 (15686) (0) | 2020.11.04 |
---|---|
(알고리즘) boj - 뱀 (3190) (0) | 2020.10.22 |
(알고리즘) N과 M (3) - 중복순열 (1) | 2020.10.21 |
(알고리즘) N과 M (2) - 조합 (0) | 2020.10.21 |
(알고리즘) N과 M (1) - 순열 (0) | 2020.10.20 |