문제
자연수 N과 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오.
- 1부터 N까지 자연수 중에서 중복 없이 M개를 고른 수열
- 고른 수열은 오름차순이어야 한다.
입력
- 첫째 줄에 자연수 N과 M이 주어진다. (1 ≤ M ≤ N ≤ 8)
출력
- 한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러 번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다.
- 수열은 사전 순으로 증가하는 순서로 출력해야 한다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Stack;
public class baekjoon15650 {
private static int n;
private static int m;
private static int[] info;
private static Stack<Integer> stack = new Stack<>();
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] string = br.readLine().split(" ");
int n = Integer.parseInt(string[0]);
int m = Integer.parseInt(string[1]);
info = new int[n];
for (int i = 0; i < n; i++) {
info[i] = i + 1;
}
combination15650(0, n, m);
}
private static void combination15650(int index, int n, int m) {
if (stack.size() == m) {
for (int i : stack) {
System.out.print(i + " ");
}
System.out.println();
return;
}
for (int i = index; i < n; i++) {
stack.add(info[i]);
combination15650(i + 1, n, m);
stack.pop();
}
}
}
'알고리즘 > 초급1' 카테고리의 다른 글
[JAVA] 백준 15652번: N과 M (4) ( 초급 2-11 ) (0) | 2021.09.25 |
---|---|
[JAVA] 백준 15651번: N과 M (3) ( 초급 2-10 ) (0) | 2021.09.24 |
[JAVA] 백준 15649번 N과 M (1) ( 초급 2-8 ) (0) | 2021.09.24 |
[JAVA] 1748번: 수 이어쓰기1 ( 초급 2 - 7 ) (0) | 2021.09.23 |
[JAVA] 백준 6064번: 카잉 달력 ( 초급 2-6 ) - hard (0) | 2021.09.23 |