Recent Posts
Notice
No Rules Rules
인사성 밝은 곰곰이 (feat. 백준, 25192번) 본문
728x90
반응형
인사성 밝은 곰곰이
https://www.acmicpc.net/problem/25192
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <set>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
set<string> arr;
string str;
int N, ans = 0;
cin >> N;
for (auto n = 0; n < N; ++n) {
cin >> str;
if (!str.compare("ENTER"))
ans += arr.size(), arr.clear();
else
arr.insert(str);
}
cout << ans + arr.size();
return 0;
}
// *&)*@*
반응형
중복된 문자열을 처리하는 방법을 요구하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
스케이트보드 (feat. 백준, 28417번) (0) | 2023.07.31 |
---|---|
solved.ac (feat. 백준, 18110번) (0) | 2023.06.12 |
쉬운 최단거리 (feat. 백준, 14940번) (0) | 2023.06.08 |
도로 (feat. 백준, 9344번) (0) | 2023.06.05 |
핑크 플로이드 (feat. 백준, 6091번) (0) | 2023.05.22 |
Comments