Recent Posts
Notice
No Rules Rules
붙임성 좋은 총총이 (feat. 백준, 26069번) 본문
728x90
반응형
붙임성 좋은 총총이
https://www.acmicpc.net/problem/26069
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans = 0;
string str1, str2;
map<string, bool> arr;
cin >> N;
for(register int n = 0; n < N; ++n){
cin >> str1 >> str2;
if(str1 == "ChongChong" || str2 == "ChongChong" || arr[str1] || arr[str2])
arr[str1] = arr[str2] = true;
}
for(auto& v : arr)
if(v.second)
++ans;
cout << ans;
return 0;
}
// *&)*@*
반응형
단순 문자열 조작 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
마라톤 1 (feat. 백준, 10655번) (0) | 2023.01.06 |
---|---|
2022년이 아름다웠던 이유 (feat. 백준, 27065번) (0) | 2023.01.02 |
치킨댄스를 추는 곰곰이를 본 임스 2 (feat. 백준, 26068번) (0) | 2022.11.28 |
뒤집기 (feat. 백준, 1439번) (0) | 2022.11.23 |
한다 안한다 (feat. 백준, 5789번) (0) | 2022.11.23 |
Comments