-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15652_N๊ณผ M(4).java
More file actions
37 lines (32 loc) ยท 1.04 KB
/
15652_N๊ณผ M(4).java
File metadata and controls
37 lines (32 loc) ยท 1.04 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
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 StringBuffer sb = new StringBuffer();
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, 1);
System.out.println(sb);
}
private static void Perm(int cnt, int start) { //start๋ก ๋น๋ด๋ฆผ์ฐจ์ ์์ฑ
if(cnt == M) {
//M๊ฐ์ ์์ด์ ๊ณจ๋์ ๊ฒฝ์ฐ
for(int i=0; i<M; i++) {
sb.append(arr[i] + " ");
}
sb.append("\n");
} else {
for(int i=start; i<=N; i++) { //start๋ถํฐ
arr[cnt] = i;
Perm(cnt+1, i);
}
}
}
}