[백준] 15665: N과 M (11)(Java)

Yoon Uk·2022년 7월 3일
0

알고리즘 - 백준

목록 보기
16/130
post-thumbnail

문제

BOJ 15665: N과 M (11) https://www.acmicpc.net/problem/15665

조건 확인

  • N개의 자연수 중에서 M개를 고른 수열을 출력한다.
  • 중복할 수 있다.
  • 수열은 사전 순으로 증가하는 순서로 출력해야 한다.

풀이

  • before 변수와 now 변수를 통해 중복인지 아닌지 구분한다.
  • 중복이 가능하기 때문에 dfs 함수에 depth 값만 넘겨준다.

코드

import java.util.*;
import java.io.*;

public class Main {
	
	static int N, M;
	static int[] arr, printArr;
	static StringBuilder sb = new StringBuilder();
	
	public static void main(String[] args) throws IOException{
		Scanner sc = new Scanner(System.in);
		
		N = sc.nextInt();
		M = sc.nextInt();
		
		arr = new int[N];
		printArr = new int[M];
		for(int i=0; i<N; i++) {
			arr[i] = sc.nextInt();
		}
		
		Arrays.sort(arr);
		
		dfs(0);
		System.out.println(sb);
	}
	
	static void dfs(int depth) {
		if(depth == M) {
			for(int i=0; i<M; i++) {
				sb.append(printArr[i]).append(" ");
			}
			sb.append("\n");
			return;
		}
		
		int before = -1;
		for(int i=0; i<N; i++) {
			int now = arr[i];
			if(before != now) {
				before = now;
				printArr[depth] = arr[i];
				dfs(depth + 1);
			}
				
		}
	}
}

정리

  • before 변수와 now 변수를 이용하여 중복여부만 잘 구분해주면 된다.

0개의 댓글