※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 25840번 문제인 Sharing Birthdays이다.
문제는 아래 링크를 확인하자.

https://www.acmicpc.net/problem/25840 

 

25840번: Sharing Birthdays

The first input line contains an integer, n (1 ≤ n ≤ 50), indicating the number of birthdays. Each of the next n input lines contains a birthday in the form of mm/dd. Assume mm will be between 01 and 12 (inclusive) and dd will be between 01 and 31 (inc

www.acmicpc.net

주어지는 날짜 중 서로 구별되는 날짜의 개수를 구하는 문제이다.

 

이는 주어진 문자열 중 서로 구별되는 문자열의 개수를 구하는 문제로 생각해도 좋다.

 

set은 중복된 자료를 저장하지 않는다는 점을 이용하여 문제를 간단히 해결하자.

 

아래는 제출한 소스코드이다.

#include <iostream>
#include <set>
#include <string>
using namespace std;

int N;
set<string> st;

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	cin >> N;
	while (N--) {
		string s; cin >> s;
		st.insert(s);
	}

	cout << st.size();
}
728x90

+ Recent posts