N개의 자연수와 자연수 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오. N개의 자연수는 모두 다른 수이다.
첫째 줄에 N과 M이 주어진다. (1 ≤ M ≤ N ≤ 7)
둘째 줄에 N개의 수가 주어진다. 입력으로 주어지는 수는 10,000보다 작거나 같은 자연수이다.
한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러 번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다.
수열은 사전 순으로 증가하는 순서로 출력해야 한다.
import java.util.Arrays;
import java.util.Scanner;
public class Main {
static int N, M;
static int[] arr, list;
static StringBuilder sb = new StringBuilder();
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
M = sc.nextInt();
arr = new int[M];
list = new int[N];
for (int i = 0; i < N; i++) {
list[i] = sc.nextInt();
}
Arrays.sort(list);
BT(0);
System.out.println(sb);
}
public static void BT(int depth) {
if (depth == M) {
for (int v: arr) {
sb.append(v).append(" ");
}
sb.append('\n');
return;
}
for (int i = 0; i < N; i++) {
arr[depth] = list[i];
BT(depth+1);
}
}
}