No Rules Rules

당신은 운명을 믿나요? (feat. 백준, 27930번) 본문

생활/코테

당신은 운명을 믿나요? (feat. 백준, 27930번)

개발하는 완두콩 2023. 4. 5. 12:18
728x90
반응형

당신은 운명을 믿나요?
https://www.acmicpc.net/problem/27930

 

27930번: 당신은 운명을 믿나요?

민지는 11번째 글자까지 읽었을 때 각각 1,3,5,7,9번째의 글자를 제거하고 YONSEI를 찾을 수 있다.

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
    string str;
    string ans1 = "KOREA", ans2 = "YONSEI";
    register int idx1 = 0, idx2 = 0;
    cin >> str;
    for(auto& ch : str){
        if(ch == ans1.at(idx1))
            ++idx1;
        if(ch == ans2.at(idx2))
            ++idx2;
        if(idx1 == ans1.size()){
            cout << ans1;
            return 0;
        }
        else if(idx2 == ans2.size()){
            cout << ans2;
            return 0;
        }
    }
	return 0;
}
// *&)*@*

 

반응형

단순 문자열 처리 문제입니다.

728x90
반응형
Comments