728x90
반응형
https://www.acmicpc.net/problem/19585
해당 문제는 색상은 trie에, 닉네임은 set에 저장하여 값을 체크하는 방식으로 진행하면 되는 문제이다.
trie 알고리즘을 알고 있다면 약간의 아이디어를 추가하면 간단하게 풀 수 있다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.StringTokenizer;
public class Main {
static HashSet<String> set = new HashSet<>();
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken()), m = Integer.parseInt(st.nextToken());
Trie trie = new Trie();
while(n --> 0) {
trie.insert(br.readLine());
}
while(m --> 0) {
set.add(br.readLine());
}
int q = Integer.parseInt(br.readLine());
StringBuilder sb = new StringBuilder();
while(q --> 0) {
sb.append(trie.search(br.readLine()) ? "Yes" : "No").append("\n");
}
System.out.print(sb);
}
public static class Trie {
Trie[] child = new Trie[26];
boolean check;
public void insert(String word) {
Trie curNode = this;
for(char c : word.toCharArray()) {
if(curNode.child[c - 'a'] == null) {
curNode.child[c - 'a'] = new Trie();
}
curNode = curNode.child[c - 'a'];
}
curNode.check = true;
}
public boolean search(String word) {
Trie trieNode = this;
for(int i = 0; i < word.length(); i++) {
char c = word.charAt(i);
Trie node = trieNode.child[c - 'a'];
if(node == null) {
return false;
}
if(node.check && set.contains(word.substring(i + 1))) {
return true;
}
trieNode = node;
}
return false;
}
}
}
728x90
반응형
'백준 > 15001 - 20000' 카테고리의 다른 글
[백준] 17615번 : 볼 모으기 (0) | 2024.11.11 |
---|---|
[백준] 17071번 : 숨바꼭질 5 (0) | 2024.11.10 |
[백준] 18185번 : 라면 사기 (0) | 2024.03.21 |
[백준] 16916번 : 부분 문자열(JAVA) (0) | 2021.08.26 |
[백준] 17298번 : 오큰수(JAVA) (0) | 2021.08.17 |
댓글