문제(출처: https://www.acmicpc.net/problem/20376)
< Counting Monuments >
문제 풀이
HashSet을 사용하여 중복을 제거한다.
my solution (Java)
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.StringTokenizer;
public class _20376_ { // Counting Monuments
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
String str = "";
HashSet<String> set = new HashSet<>();
while ((str = bf.readLine()) != null) {
st = new StringTokenizer(str);
String result = "";
st.nextToken();
while (st.hasMoreTokens()) {
result += st.nextToken() + " ";
}
set.add(result);
}
System.out.println(set.size());
}
}
변수)
set : HashSet
result : 단어
한 줄씩 정보를 입력받아 날짜를 제외하여 HashSet에 저장한다. 최종 HashSet의 크기를 출력한다.
'🌞Algorithm > 🔥Baekjoon' 카테고리의 다른 글
[Baekjoon] 18703_Duplicate Files (0) | 2024.12.12 |
---|---|
[Baekjoon] 8633_Sortowanie biżuterii (0) | 2024.12.11 |
[Baekjoon] 11649_Xedni Drawkcab (1) | 2024.12.09 |
[Baekjoon] 21177_No Thanks! (1) | 2024.12.06 |
[Baekjoon] 14769_Stacking Cups (0) | 2024.12.05 |