👀 문제
https://www.acmicpc.net/problem/10974
👊 도전
1. 설계
- DFS를 이용하여 모든 순열을 구한다.
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
import java.util.Scanner;
/**
* @author HEESOO
*
*/
public class Main {
static int n;
static int[] array;
static boolean[] visit;
public static void perm(String str, int depth) {
if(depth==n) {
System.out.println(str);
return;
}
for(int i=0;i<n;i++) {
if(!visit[i]) {
visit[i]=true;
perm(str+array[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();
array=new int[n];
for(int i=0;i<n;i++)
array[i]=i+1;
visit=new boolean[n];
perm("", 0);
}
}
3. 결과
🤟 성공 🤟
4. 설명
- DFS를 이용하여 모든 순열을 구한다
- DFS를 이용하여 순열을 구한다.
- depth를 이용하여 n개의 숫자로 순열을 만들 수 있게 한다.
- 숫자의 중복 사용을 피하기 위해 visit를 이용하되, 해당 재귀가 끝난 후 다음 사용을 위해 visit를 다시 초기화해준다.
👏 해결 완료!
참고
- 백준 10974번. 모든 순열 (Java) https://bcp0109.tistory.com/13