-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15649_N๊ณผ M(1).java
More file actions
41 lines (37 loc) ยท 953 Bytes
/
15649_N๊ณผ M(1).java
File metadata and controls
41 lines (37 loc) ยท 953 Bytes
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
import java.awt.List;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static int N, M;
static int[] arr;
static boolean[] visited;
static int memory;
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];
visited = new boolean[N+1];
recursion(0);
}
static void recursion(int cnt) { //cnt ์๋ฆฌ์
if(cnt == M) {
for(int i=0; i<arr.length;i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}
else {
for(int i=1; i<N+1; i++) {
if(visited[i]) continue;
visited[i] = true;
arr[cnt] = i;
recursion(cnt + 1);
visited[i] = false;
}
}
}
}