Back

백준 15650 N과 M (2)

[문제]

자연수 N과 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오. 1부터 N까지 자연수 중에서 중복 없이 M개를 고른 수열 고른 수열은 오름차순이어야 한다.

[입력]

첫째 줄에 자연수 N과 M이 주어진다. (1 ≤ M ≤ N ≤ 8)

[출력]

한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러 번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다. 수열은 사전 순으로 증가하는 순서로 출력해야 한다.

[소스]


import java.util.Scanner;

public class Main{
	static int N,M;
	static int[] arr;
	static boolean[] visited;
    public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		N=sc.nextInt();
		M=sc.nextInt();
      	arr=new int[M];
		visited=new boolean[N+1];
	   	go(1,0);
    }
	static void go(int c, int depth){
		if(M==depth){
			for(int ans:arr){
				System.out.print(ans+ " ");
			}
			System.out.println();
			return;
		}
		for(int i=c;i<=N;i++){
			if(!visited[i]){
				visited[i]=true;
				arr[depth]=i;
				go(i+1,depth+1);
				visited[i]=false;
			}
		}
	}
}

문제링크

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

comments powered by Disqus