뚱땅뚱땅

[문제] 백준 15656번 N과 M (8) - Java 본문

알고리즘/백준

[문제] 백준 15656번 N과 M (8) - Java

양순이 2021. 7. 13. 20:35
728x90

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

 

15657번: N과 M (8)

N개의 자연수와 자연수 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오. N개의 자연수는 모두 다른 수이다. N개의 자연수 중에서 M개를 고른 수열

www.acmicpc.net

 

사전순으로 출력해야하므로 먼저 배열을 정렬시켜준 다음에 중복조합으로 문제를 풀면 된다.

 

public class Main {
	static int N,M;
	static int[] arr;
	static StringBuilder sb = new StringBuilder();
	
	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());
		
		arr = new int[N];
		st = new StringTokenizer(in.readLine(), " ");
		for(int i=0;i<N;i++) {
			arr[i] = Integer.parseInt(st.nextToken());
		}// 배열 초기화
		
		// 오름차순으로 정렬
		Arrays.sort(arr);
		//중복조합
		ccomb(0, new int[M], 0);
		System.out.print(sb);
	}
	static void ccomb(int cnt, int[] selected, int startIdx) {
		if(cnt == M) {
			for(int i=0;i<cnt;i++) {
				sb.append(selected[i]).append(' ');
			}
			sb.append('\n');
			return;
		}
		for(int i= startIdx;i<N;i++) {
			selected[cnt] = arr[i];
			ccomb(cnt+1, selected, i);
		}
	}
}
728x90
Comments