-
Notifications
You must be signed in to change notification settings - Fork 2
/
Main.java
43 lines (36 loc) Β· 1.16 KB
/
Main.java
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
package Series.NandM.P15649;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
static int N, M;
static int[] nums = new int[8];
static boolean[] visited = new boolean[8];
public static void main(String[] args) throws Exception {
// System.setIn(new FileInputStream("src/Series/NandM/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
dfs(0);
}
static void dfs(int count){
if (count == M) {
for (int i = 0; i < M; i++) {
System.out.print(nums[i] + " ");
}
System.out.println("");
return;
}
for (int i = 0; i < N; i++) {
if (!visited[i]) {
visited[i] = true;
nums[count] = i + 1;
dfs(count + 1);
visited[i] = false;
}
}
}
}