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

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 }}