BOJ 15655: N과 M (6) https://www.acmicpc.net/problem/15655
arr
을 오름차순으로 정렬한 뒤 dfs 함수를 실행한다.arr
배열의 startIdx
와 depth
를 인자로 전달한다.printArr
에 depth
값을 인덱스로 하여 arr[i]
을 넣어준다.startIdx
에 i + 1
을 넣어주고 depth
값에 depth + 1
을 해준다.import java.util.*;
import java.io.*;
public class Main {
static int N, M;
static int[] arr;
static int[] printArr;
public static void main(String[] args) throws IOException{
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
M = sc.nextInt();
arr = new int[N];
printArr = new int[M];
for(int i=0; i<N; i++) {
arr[i] = sc.nextInt();
}
sc.close();
Arrays.sort(arr); // 입력받은 배열을 오름차순으로 정렬
dfs(0, 0);
}
static void dfs(int startIdx, int depth) {
if(depth == M) {
for(int i=0; i<M; i++) {
System.out.print(printArr[i] + " ");
}
System.out.println();
return;
}
for(int i=startIdx; i<N; i++) {
printArr[depth] = arr[i]; // depth를 인덱스로 하여 출력할 배열에 넣음
dfs(i + 1, depth + 1); // 시작할 인덱스 값을 +1 하고 depth를 +1 함
}
}
}