짱아의 개발 기록장

2020 KAKAO BLIND RECRUITMENT - 문자열 압축(c++) 본문

Algorithm/카카오 기출

2020 KAKAO BLIND RECRUITMENT - 문자열 압축(c++)

jungahshin 2021. 3. 4. 14:34
반응형

1~size만큼

반복하면서, for(int i=0; i<s.size(); i+=size) 반복되는 문자열이 있는 지 확인하는 식으로 구현했다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <string>
#include <vector>
#include <iostream>
#include <climits>
 
using namespace std;
 
string cal(int sizestring s){
    string ans = "";
    string last = "";
    int cnt = 0;
    
    for(int i=0; i<s.size(); i+=size){
        if((i+size-1)<s.size()){
            string temp = s.substr(i, size);
            if(i==0){
                last = temp;
            }
            
            if(last==temp){
                cnt++;
            }else{
                if(cnt>1){
                    ans += to_string(cnt);
                }
                ans += last;
                cnt = 1;
            }
            
            // 마지막의 경우
            if(i==s.size()-size){
                if(cnt>1){
                    ans += to_string(cnt);
                }
                ans += temp;
            }
            
            last = temp;
            
        }else{
            if(cnt>1){
                ans += to_string(cnt);
            }
            ans += last;
            ans += s.substr(i, s.size()-i);
        }
    }
    
    return ans;
}
 
int solution(string s) {
    int answer = INT_MAX;
    
    for(int i=1; i<=s.size(); i++){
        string temp = cal(i, s);
        int num = temp.size();
        answer = min(answer, num);
    }
    
    return answer;
}
cs
반응형
Comments