-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15651_N๊ณผ M (3).java
More file actions
36 lines (32 loc) ยท 1.01 KB
/
15651_N๊ณผ M (3).java
File metadata and controls
36 lines (32 loc) ยท 1.01 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
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
static int N, M;
static int[] arr;
static StringBuilder sb = new StringBuilder(); //์์ฐ๋ฉด 9% ์๊ฐ์ด๊ณผ
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];
Perm(0);
System.out.println(sb);
}
private static void Perm(int cnt) {
if(cnt == M) {
//์ถ๋ ฅ
for(int i=0; i<arr.length; i++) {
sb.append(arr[i] + " ");
}
sb.append("\n");
} else {
for(int i=1; i<=N; i++) { //์ค๋ณต์์ด : visited X
arr[cnt] = i;
Perm(cnt + 1);
}
}
}
}