-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15654_N과 M (5).java
More file actions
52 lines (45 loc) · 1.54 KB
/
15654_N과 M (5).java
File metadata and controls
52 lines (45 loc) · 1.54 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
48
49
50
51
52
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 ArrayList<Integer> list = new ArrayList<>();
static boolean[] v; //방문배열
static StringBuilder sb = new StringBuilder(); //안쓰면 시간초과
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() );
st = new StringTokenizer(br.readLine());
for(int i=0; i<N; i++) { //입력값 리스트 추가
list.add(Integer.parseInt(st.nextToken()));
}
Collections.sort(list); //오름차순 정렬
arr = new int[M];
v = new boolean[10055];
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=0; i<list.size(); i++) {
int idx = list.get(i);
if(!v[idx]) { //방문 검사
v[idx] = true;
arr[cnt] = idx;
Perm(cnt + 1);
v[idx] = false;
}
}
}
}
}