-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboj_15649.java
More file actions
47 lines (37 loc) · 1.1 KB
/
boj_15649.java
File metadata and controls
47 lines (37 loc) · 1.1 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
package backtracking;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class boj_15649 {
static int N;
static int M;
static int[] arr;
static boolean[] check;
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[M+1];
check = new boolean[N+1];
dfs(0);
}
public static void dfs(int depth) {
if (depth == M) {
for (int i = 0; i < M; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
return;
}
for (int i = 0; i < N; i++) {
if (!check[i]) {
check[i] = true;
arr[depth] = i + 1;
dfs(depth + 1);
check[i] = false;
}
}
}
}