No Rules Rules

붙임성 좋은 총총이 (feat. 백준, 26069번) 본문

생활/코테

붙임성 좋은 총총이 (feat. 백준, 26069번)

개발하는 완두콩 2022. 11. 28. 12:26
728x90
반응형

붙임성 좋은 총총이
https://www.acmicpc.net/problem/26069

 

26069번: 붙임성 좋은 총총이

첫번째 줄에는 사람들이 만난 기록의 수 $N\ (1 \le N \le 1\ 000)$이 주어진다. 두번째 줄부터 $N$개의 줄에 걸쳐 사람들이 만난 기록이 주어진다. $i + 1$번째 줄에는 $i$번째로 만난 사람들의 이름 $A_i$

www.acmicpc.net

 

// 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
반응형
Comments