Skip to content

Commit c4d1fa9

Browse files
committed
[Permutation] baekjoon-5568
1 parent 020dedf commit c4d1fa9

File tree

3 files changed

+82
-0
lines changed

3 files changed

+82
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@
7474
| 03 | | [Baekjoon-1010 다리 놓기](https://github.com/Seogeurim/Algorithm-practice/blob/master/src/Combination/P1010) | DP |
7575
| 04 | ⭐️ | [Baekjoon-1256 사전](https://github.com/Seogeurim/Algorithm-practice/blob/master/src/Combination/P1256) | |
7676

77+
### Permutation
78+
79+
| # || Problem | Note |
80+
| :-: | :----: | :------------------------------------------------------------------------------------------------------------------ | :------------------------ |
81+
| 01 | | [Baekjoon-5568 카드 놓기](https://github.com/Seogeurim/Algorithm-practice/blob/master/src/Permutation/P5568) | |
82+
7783
### Probability
7884

7985
| # || Problem | Note |

src/Permutation/P5568/Main.java

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
package Permutation.P5568;
2+
3+
import java.io.BufferedReader;
4+
import java.io.FileInputStream;
5+
import java.io.InputStreamReader;
6+
import java.util.ArrayList;
7+
import java.util.Arrays;
8+
import java.util.Collections;
9+
import java.util.List;
10+
11+
public class Main {
12+
13+
static int N, K;
14+
static int[] nums;
15+
static int[] cases = new int[4];
16+
static boolean[] visited = new boolean[10];
17+
static List<Integer> ans = new ArrayList<>();
18+
19+
public static void main(String[] args) throws Exception {
20+
System.setIn(new FileInputStream("src/Permutation/P5568/input.txt"));
21+
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
22+
23+
N = Integer.parseInt(br.readLine());
24+
K = Integer.parseInt(br.readLine());
25+
26+
nums = new int[N];
27+
for (int i = 0; i < N; i++) {
28+
nums[i] = Integer.parseInt(br.readLine());
29+
}
30+
31+
Arrays.sort(nums);
32+
dfs(0);
33+
34+
Collections.sort(ans);
35+
int count = 1;
36+
for (int i = 1; i < ans.size(); i++) {
37+
if (!ans.get(i).equals(ans.get(i - 1))){
38+
count ++;
39+
}
40+
}
41+
42+
System.out.println(count);
43+
44+
br.close();
45+
}
46+
47+
static void dfs(int count){
48+
if (count == K) {
49+
ans.add(arrToNum(cases, K));
50+
return;
51+
}
52+
int selected = 0;
53+
for (int i = 0; i < N; i++) {
54+
if (!visited[i] && nums[i] != selected) {
55+
visited[i] = true;
56+
cases[count] = nums[i];
57+
dfs(count + 1);
58+
visited[i] = false;
59+
}
60+
}
61+
}
62+
63+
static int arrToNum(int[] arr, int size){
64+
StringBuilder sb = new StringBuilder();
65+
for (int i = 0; i < size; i++) {
66+
sb.append(arr[i]);
67+
}
68+
return Integer.parseInt(String.valueOf(sb));
69+
}
70+
}

src/Permutation/P5568/input.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
4
2+
2
3+
1
4+
2
5+
12
6+
1

0 commit comments

Comments
 (0)