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
53
54
55
56
57
58
59
|
import java.util.*;
class Solution {
private static ArrayList<ArrayList<Integer>> allList = new ArrayList<ArrayList<Integer>>();
private static HashSet<HashSet<String>> allSet = new HashSet<HashSet<String>>();
public static void Search(String[] user_id, HashMap<Integer, String> map, int n, int len, int max) {
if (n == len) {
if (map.size() == max)
allSet.add(new HashSet<String>(map.values()));
return;
}
ArrayList<Integer> list = allList.get(n);
for (int i = 0; i <= list.size(); i++) {
// 해당 인덱스를 선택하지 않는 경우 추가
if (i == list.size())
Search(user_id, map, n + 1, len, max);
// 선택되지 않은 ban id에 대해서 수행
else if (map.get(list.get(i)) == null) {
int index = list.get(i);
map.put(index, user_id[n]);
Search(user_id, map, n + 1, len, max);
map.remove(index);
}
}
}
public static void isPossible(String[] banned_id, String s) {
ArrayList<Integer> list = new ArrayList<Integer>();
for (int i = 0; i < banned_id.length; i++) {
boolean flag = true;
for (int j = 0; j < banned_id[i].length(); j++) {
if (banned_id[i].length() != s.length()) {
flag = false;
break;
}
if (banned_id[i].charAt(j) != s.charAt(j) && banned_id[i].charAt(j) != '*') {
flag = false;
break;
}
}
if (flag) {
list.add(i);
}
}
allList.add(list);
}
public int solution(String[] user_id, String[] banned_id) {
int answer = 0;
// 각 id에 대해 banned_id에 속하는 경우 저장
for (int i = 0; i < user_id.length; i++) {
isPossible(banned_id, user_id[i]);
}
// 모든 경우의 수 탐색
Search(user_id, new HashMap<Integer, String>(), 0, user_id.length, banned_id.length);
answer = allSet.size();
return answer;
}
}
|
cs |
모든 조합의 경우를 이중 Set에 저장하여 중복을 제거하였다.