-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathusingTrie.java
64 lines (50 loc) Β· 1.55 KB
/
usingTrie.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
package String.P14426;
import java.io.*;
import java.util.*;
public class usingTrie {
static int N, M;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/String/P14426/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
Trie t = new Trie();
while (N-- > 0) t.insert(br.readLine());
int ans = 0;
while (M-- > 0) {
if (t.search(br.readLine())) ans ++;
}
System.out.println(ans);
}
}
class Trie {
TrieNode root = new TrieNode();
void insert(String word) {
TrieNode current = root;
for (int i = 0; i < word.length(); i++) {
char c = word.charAt(i);
if (!current.hasChild(c))
current.children[c - 'a'] = new TrieNode();
current = current.getChild(c);
}
}
boolean search(String word) {
TrieNode current = root;
for (int i = 0; i < word.length(); i++) {
char c = word.charAt(i);
if (current.hasChild(c)) current = current.getChild(c);
else return false;
}
return true;
}
}
class TrieNode {
TrieNode[] children = new TrieNode[26];
boolean hasChild(char c) {
return children[c - 'a'] != null;
}
TrieNode getChild(char c) {
return children[c - 'a'];
}
}