문제
자연수 N과 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오.
- 1부터 N까지 자연수 중에서 M개를 고른 수열
- 같은 수를 여러 번 골라도 된다.입력
- 첫째 줄에 자연수 N과 M이 주어진다. (1 ≤ M ≤ N ≤ 7)
- 출력
- 한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러 번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다.
- 수열은 사전 순으로 증가하는 순서로 출력해야 한다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class baekjoon15651 {
private static int[] info;
private static int[] res;
private static StringBuilder sb = new StringBuilder();
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
info = new int[n];
res = new int[m];
for (int i = 0; i < n; i++) {
info[i] = i + 1;
}
combination15651(0, n, m);
System.out.println(sb);
}
private static void combination15651(int index, int n, int m) {
if (index == m) {
for (int i : res) {
sb.append(i + " ");
}
sb.append("\n");
return;
}
for (int i = 0; i < n; i++) {
res[index] = info[i];
combination15651(index + 1, n, m);
}
}
}
'알고리즘 > 초급1' 카테고리의 다른 글
[JAVA] 백준 15654번: N과 M (5) ( 초급 2 - 12 ) (0) | 2021.09.25 |
---|---|
[JAVA] 백준 15652번: N과 M (4) ( 초급 2-11 ) (0) | 2021.09.25 |
[JAVA] 백준 15650번: N과 M (2) ( 초급 2 - 9 ) (0) | 2021.09.24 |
[JAVA] 백준 15649번 N과 M (1) ( 초급 2-8 ) (0) | 2021.09.24 |
[JAVA] 1748번: 수 이어쓰기1 ( 초급 2 - 7 ) (0) | 2021.09.23 |