뚱땅뚱땅

[문제] 백준 15649번 N과 M (1) 본문

알고리즘/백준

[문제] 백준 15649번 N과 M (1)

양순이 2021. 7. 13. 16:55
728x90

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

 

15649번: N과 M (1)

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

www.acmicpc.net

간단한 순열 문제

public class Main {
	static int N, M;
	
	public static void main(String[] args) throws IOException {
		BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st = new StringTokenizer(in.readLine(), " ");
		
		N = Integer.parseInt(st.nextToken());
		M = Integer.parseInt(st.nextToken());
		
		// 1~N 중 중복 없이 M 개를 고른 수열 => 순열 nPm
		perm(0, new int[M], new boolean[N]);
	}
	
	static void perm(int cnt, int[] selected, boolean[] visited) {
		if(cnt == M) {
			for(int i=0;i<cnt;i++) {
				System.out.print(selected[i]+ " ");
			}
			System.out.println();
			return;
		}// 기저조건
		
		for(int i=0;i<N;i++) {
			if(!visited[i]) {
				selected[cnt] = i+1;
				visited[i] = true;
				perm(cnt+1, selected, visited);
				visited[i] = false;
			}
 		}
	}
}
728x90
Comments