-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
61 lines (51 loc) Β· 1.65 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
package String.P5052;
import java.io.*;
import java.util.*;
public class Main {
static int T, N;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/String/P5052/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
T = Integer.parseInt(br.readLine());
while (T-- > 0) {
N = Integer.parseInt(br.readLine());
Trie t = new Trie();
while (N-- > 0) t.insert(br.readLine());
t.query();
}
}
static class Trie {
Node root = new Node();
void insert(String s) {
Node cur = root;
for (int i = 0; i < s.length(); i++) {
int c = s.charAt(i) - '0';
if (!cur.hasChild(c)) cur.children[c] = new Node();
cur = cur.children[c];
}
cur.isEnd = true;
}
void query() {
Queue<Node> q = new LinkedList<>();
q.offer(root);
while (!q.isEmpty()) {
Node cur = q.poll();
for (int i = 0; i < 10; i++) {
if (cur.hasChild(i)) {
if (cur.isEnd) {
System.out.println("NO");
return;
}
q.offer(cur.children[i]);
}
}
}
System.out.println("YES");
}
}
static class Node {
Node[] children = new Node[10];
boolean isEnd = false;
boolean hasChild(int i) { return children[i] != null; }
}
}