-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboj_15663.java
More file actions
58 lines (50 loc) · 1.63 KB
/
boj_15663.java
File metadata and controls
58 lines (50 loc) · 1.63 KB
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
51
52
53
54
55
56
57
58
package backtracking;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
//참고: https://dy-coding.tistory.com/entry/%EB%B0%B1%EC%A4%80-15663%EB%B2%88-N%EA%B3%BC-M-9-java
public class boj_15663 {
static int N,M;
static StringBuilder sb=new StringBuilder();
static int[] arr;
static boolean[] visit;
static int[] result;
public static void main(String[] args) throws IOException {
BufferedReader br= new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st=new StringTokenizer(br.readLine());
N=Integer.parseInt(st.nextToken());
M=Integer.parseInt(st.nextToken());
arr=new int[N];
visit=new boolean[N];
result=new int[M];
st=new StringTokenizer(br.readLine());
for(int i=0;i<N;i++){
arr[i]=Integer.parseInt(st.nextToken());
}
Arrays.sort(arr); //정렬 -> 사전순 증가하는 순 출력 위함
backtrack(0);
System.out.println(sb);
}
private static void backtrack(int depth){
if(depth==M){
for(int i: result){
sb.append(i+" ");
}
sb.append('\n');
return;
}
//before: 이전에 탐색한 arr 요소의 숫자
int before=0;
for(int i=0;i<N;i++){
if(!visit[i] && before!=arr[i]){
visit[i]=true;
result[depth]=arr[i];
before=arr[i];
backtrack(depth+1);
visit[i]=false;
}
}
}
}