[백준](Java) 15654 - N 과 M (5)
문제 링크
문제 풀이
코드
import java.util.*;
public class Main {
static int n;
static int m;
static int [] arr;
static boolean [] chk;
static int [] res;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
m = sc.nextInt();
arr = new int[n];
chk = new boolean[n];
res = new int[m];
for(int i=0; i<n; i++){
arr[i] = sc.nextInt();
}
Arrays.sort(arr);
dfs(0);
}
public static void dfs(int idx){
if(idx==m){
for(int i=0; i<res.length;i++){
System.out.print(res[i]+" ");
}
System.out.println("");
return;
}
for(int i=0; i<arr.length; i++){
if(chk[i]){
continue;
}
res[idx]= arr[i];
chk[i] = true;
dfs(idx+1);
chk[i] = false;
}
}
}
Author And Source
이 문제에 관하여([백준](Java) 15654 - N 과 M (5)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@courage331/백준Java-15654-N-과-M-5저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)