👀 문제
https://www.acmicpc.net/problem/15655
👊 도전
1. 설계
- 수열은 오름차순이 되도록 dfs를 구현한다.
- StringBuilder을 이용해 프린트할 문자열을 저장해놓았다가 한꺼번에 출력한다.
2. 구현 (성공 코드)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import java.util.Arrays;
import java.util.Scanner;
/**
* @author HEESOO
*
*/
public class Main {
static int n, m;
static int[] array, result;
static boolean[] visit;
static StringBuilder sb;
public static void dfs(int idx, int depth) {
if(depth==m) {
for(int i=0;i<m;i++)
sb.append(result[i]+" ");
sb.append("\n");
return;
}
for(int i=idx;i<n;i++) {
if(visit[i]) continue;
visit[i]=true;
result[depth]=array[i];
dfs(i, depth+1);
visit[i]=false;
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scan = new Scanner(System.in);
n=scan.nextInt();
m=scan.nextInt();
array=new int[n];
result=new int[m];
visit=new boolean[n];
sb=new StringBuilder();
for(int i=0;i<n;i++)
array[i]=scan.nextInt();
Arrays.sort(array);
dfs(0,0);
System.out.println(sb);
}
}
3. 결과
🤟 성공 🤟
4. 설명
- DFS를 이용한다
- 사전순으로 출력해야하므로 dfs() 호출 전 오름차순 정렬한다.
- dfs의 파라미터 idx는 array에서 순회할 시작 인덱스이다. depth는 지금까지 만들 수열의 길이이다.
- for문을 통해 idx부터 시작하여 visit[i]=false일 경우 해당 원소를 사용한다. result[depth]에 추가할 값 array[i]를 저장한 후 dfs()를 호출한다. 이때 다음 인덱스 탐색을 위해 idx+1, depth에 값 저장하였으므로 depth+1이다.
- dfs를 재귀호출하여 depth==m이라면 길이가 m인 수열 생성이 완료한 것이므로 StringBuilder을 이용해 result의 값들을 저장해둔다. 여기서 바로 System.out.println()을 출력해도 무관하나 총 출력할 길이가 많을 경우 StringBuilder를 사용하는 것이 더 효율적이다.
- return으로 dfs()호출 다음 명령어로 왔다면 visit[i]=false로 초기화하여 다음 경우에서 숫자 재사용을 가능하게 한다.