[백준](Java) 15654 - N 과 M (5)

민지킴·2021년 5월 11일
0

백준

목록 보기
8/48
post-thumbnail

문제 링크

https://www.acmicpc.net/problem/15654

문제 풀이


코드

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;
        }

    }
}
profile
하루하루는 성실하게 인생 전체는 되는대로

0개의 댓글