본문 바로가기
JAVA/백준

[Java] 백준 14425 문자열 집합 - 트라이

by 푸_푸 2022. 12. 21.
728x90

백준 14425 문자열 집합
문제

총 N개의 문자열로 이루어진 집합 S가 주어진다.

입력으로 주어지는 M개의 문자열 중에서 집합 S에 포함되어 있는 것이 총 몇 개인지 구하는 프로그램을 작성하시오.

입력

첫째 줄에 문자열의 개수 N과 M (1 ≤ N ≤ 10,000, 1 ≤ M ≤ 10,000)이 주어진다.

다음 N개의 줄에는 집합 S에 포함되어 있는 문자열들이 주어진다.

다음 M개의 줄에는 검사해야 하는 문자열들이 주어진다.

입력으로 주어지는 문자열은 알파벳 소문자로만 이루어져 있으며, 길이는 500을 넘지 않는다. 집합 S에 같은 문자열이 여러 번 주어지는 경우는 없다.

출력

첫째 줄에 M개의 문자열 중에 총 몇 개가 집합 S에 포함되어 있는지 출력한다.


제출

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		tNode root = new tNode();
		while (n > 0) { 
			String text = sc.next();
			tNode now = root;
			for (int i = 0; i < text.length(); i++) {
				char c = text.charAt(i);
				if (now.next[c - 'a'] == null) {
					now.next[c - 'a'] = new tNode();
				}
				now = now.next[c - 'a'];
				if (i == text.length() - 1)
					now.isEnd = true;
			}
			n--;
		}
		int count= 0;
		while (m > 0) {
			String text = sc.next();
			tNode now = root;
			for (int i = 0; i < text.length(); i++) {
				char c = text.charAt(i);
				if (now.next[c - 'a'] == null) {
					break;
				}
				now = now.next[c - 'a'];
				if (i == text.length() -1 && now.isEnd)
					count++;
			}
			m--;
		}
		System.out.println(count);
	}
}
class tNode {
	tNode[] next = new tNode[26];
	boolean isEnd;
}
import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		tNode root = new tNode();
		while (n > 0) { 
			String text = sc.next();
			tNode now = root;
			for (int i = 0; i < text.length(); i++) {
				char c = text.charAt(i);
				if (now.next[c - 'a'] == null) {
					now.next[c - 'a'] = new tNode();
				}
				now = now.next[c - 'a'];
				if (i == text.length() - 1)
					now.isEnd = true;
			}
			n--;
		}
		int count= 0;
		while (m > 0) {
			String text = sc.next();
			tNode now = root;
			for (int i = 0; i < text.length(); i++) {
				char c = text.charAt(i);
				if (now.next[c - 'a'] == null) {
					break;
				}
				now = now.next[c - 'a'];
				if (i == text.length() -1 && now.isEnd)
					count++;
			}
			m--;
		}
		System.out.println(count);
	}
}
class tNode {
	tNode[] next = new tNode[26];
	boolean isEnd;
}

예제

5 11
baekjoononlinejudge
startlink
codeplus
sundaycoding
codingsh
baekjoon
codeplus
codeminus
startlink
starlink
sundaycoding
codingsh
codinghs
sondaycoding
startrink
icerink

결과

백준 14425 문자열 집합

 

 

14425번: 문자열 집합

첫째 줄에 문자열의 개수 N과 M (1 ≤ N ≤ 10,000, 1 ≤ M ≤ 10,000)이 주어진다.  다음 N개의 줄에는 집합 S에 포함되어 있는 문자열들이 주어진다. 다음 M개의 줄에는 검사해야 하는 문자열들이 주어

www.acmicpc.net

 

728x90

댓글