문제 출처
https://www.acmicpc.net/problem/6603
접근 방식 및 풀이
- 백트래킹 방법, DFS 방법이 있었지만, DFS으로 구현하였다.
- DFS로 탐색하다가 6자리 문자열을 다 찾았으면 result가 true인 것들만 출력한다.
소스 코드
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
45
46
47
48
49
50
|
import java.io.IOException;
import java.util.StringTokenizer;
public class Main {
static int N ;
static int[] arr;
static boolean[] result;
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
while ( true){
N = sc.nextInt();
if(N==0){
break;
}
arr = new int[N];
result = new boolean[N];
for (int i = 0; i <N ; i++) {
arr[i] = sc.nextInt();
}
DFS(0, 0);
System.out.println();
}
}
private static void DFS(int start, int depth){
if(depth == 6){
for (int i = 0; i <N ; i++) {
if(result[i]){
System.out.print(arr[i] + " ");
}
}
System.out.println();
}
for (int i = start; i <N ; i++) {
result[i] = true;
DFS(i+1, depth+1);
// 출력하고 돌아올땐 다시 사용해야 하므로 false로
result[i] = false;
}
}
}
|
결과
'Competition > Baekjoon' 카테고리의 다른 글
[백준] 1208번 자바 부분수열의 합2 (0) | 2020.04.27 |
---|---|
[백준] 5014번 자바 스타트 링크 (0) | 2020.04.25 |
[백준] 2186번 자바 문자판 (0) | 2020.04.24 |