-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
81 lines (65 loc) Β· 1.9 KB
/
Main.java
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package DFS.P1062;
import java.util.Scanner;
public class Main {
static int N, K;
static String[] words;
static boolean[] visited;
static int selected = 5;
static int ans = 0;
public static void main(String[] args) throws Exception {
// System.setIn(new FileInputStream("src/DFS/P1062/input.txt"));
Scanner sc = new Scanner(System.in);
N = Integer.parseInt(sc.next());
K = Integer.parseInt(sc.next());
words = new String[N];
for (int i = 0; i < N; i++) {
words[i] = sc.next().replaceAll("[antic]", "");
}
if (K < 5) {
System.out.println(ans);
} else {
visited = new boolean[26];
visited[0] = true;
visited['n' - 'a'] = true;
visited['t' - 'a'] = true;
visited['i' - 'a'] = true;
visited['c' - 'a'] = true;
ans = countWords();
for (int i = 0; i < 26; i++) {
if (!visited[i])
dfs(i);
}
System.out.println(ans);
}
}
static void dfs(int index){
visited[index] = true;
selected++;
if (selected == K) {
ans = Math.max(countWords(), ans);
} else {
for (int i = index + 1; i < 26; i++) {
if (!visited[i])
dfs(i);
}
}
visited[index] = false;
selected--;
}
static int countWords(){
int count = 0;
for (int i = 0; i < N; i++) {
String word = words[i];
boolean isPossible = true;
for (int j = 0; j < word.length(); j++) {
if(!visited[word.charAt(j) - 'a']) {
isPossible = false;
break;
}
}
if (isPossible)
count++;
}
return count;
}
}