프로그래머스 140108 문자열 나누기

Jmnote (토론 | 기여)님의 2023년 11월 23일 (목) 21:59 판 (새 문서: ==개요== {{프로그래머스|레벨=1|페이지=1|분류=연습문제}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> using namespace std; int solutio...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

프로그래머스 140108 문자열 나누기

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(string s) {
    int answer = 0;
    char x = 0;
    int cnt_x = 0;
    int not_x = 0;
    for(int i=0; i<s.length(); i++) {
        if (x == 0) {
            x = s[i];
            cnt_x = 1;
            not_x = 0;
            answer++;
            continue;
        }
        if (s[i] == x ) {
            cnt_x++;
        } else {
            not_x++;
        }
        if( cnt_x == not_x ) {
            x = 0;
        }
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}