백준 15651번 : N과 M (3)

반응형

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

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class Main {
    StringBuilder sb = new StringBuilder();
    int[] num;
    boolean[] check;
    public void solution() 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());
        num = new int[m];
        check = new boolean[n];
        dfs(n, m, 0);
        System.out.println(sb);
    }
    public void dfs(int n, int m, int depth){
        if(depth==m){
            for(int a : num){
                sb.append(a).append(" ");
            }
            sb.append("\n");
            return;
        }
        for(int i = 0; i<n; i++){
            if(!check[i]){
                num[depth] = i+1;
                dfs(n,m, depth+1);
            }
        }
    }


    public static void main(String args[]) throws IOException {
        new Main().solution();
    }
}

DFS를 활용한다. 모든 인덱스별로 인덱스의 크기만큼 순차적으로 모두 접근하고 출력한다.

반응형

'개발 > 알고리즘' 카테고리의 다른 글

백준 15654번 : N과 M (5)  (0) 2023.01.04
백준 15652번 : N과 M (4)  (0) 2023.01.04
백준 15650번 : N과 M (2)  (0) 2023.01.04
백준 15649번 : N과 M (1)  (0) 2023.01.04
백준 9095번 : 1, 2, 3 더하기  (0) 2023.01.03