백준 15652번 : N과 M (4)

반응형

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

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++){
            for(int j = 0; j<i; j++){
                check[j] = true;
            }
            if(!check[i]){
                num[depth] = i+1;
                dfs(n,m, depth+1);
            }
            for(int j = 0; j<i; j++){
                check[j] = false;
            }
        }
    }


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

DFS와 백트래킹을 활용한다. 루프 인덱스 이하의 값을 방문체크 해주고,  루프 인덱스 이하를 제외한 인덱스를 순차적으로 반복방문한다.

반응형

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

백준 15655번 : N과 M (6)  (0) 2023.01.06
백준 15654번 : N과 M (5)  (0) 2023.01.04
백준 15651번 : N과 M (3)  (0) 2023.01.04
백준 15650번 : N과 M (2)  (0) 2023.01.04
백준 15649번 : N과 M (1)  (0) 2023.01.04