백준 15649번 : N과 M (1)

반응형

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

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

DFS 와 백트래킹을 활용해서 풀었다. n 만큼 루프를 돌려서 유효성을 체크하고, 유효하다면 값이 중복되지 않도록 해주고,

모든 노드를 탐색하고, 마지막에 출력해준다.

반응형

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

백준 15651번 : N과 M (3)  (0) 2023.01.04
백준 15650번 : N과 M (2)  (0) 2023.01.04
백준 9095번 : 1, 2, 3 더하기  (0) 2023.01.03
백준 6064번 : 카잉 달력  (0) 2023.01.02
백준 1107번 : 리모컨  (0) 2023.01.02