Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 중반부
- Union-find
- 카카오
- 투포인터
- 코테
- 삼성 #코테 #2020상반기 #c++
- 스마일게이트
- 서버개발캠프
- LIS #Algorithm #요소추적
- 유니온파인드
- Smilegate
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- BaekJoon
- 코딩테스트
- 카카오인턴
- 1편
- Algorithm
- 알고리즘
- BFS
- 보석쇼핑
- c++
- 식단
- 소감
- 백준
Archives
- Today
- Total
짱아의 개발 기록장
2020 KAKAO BLIND RECRUITMENT - 문자열 압축(c++) 본문
반응형
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 size, string 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 |
반응형
'Algorithm > 카카오 기출' 카테고리의 다른 글
2020 KAKAO BLIND RECRUITMENT - 외벽 점검(c++) (0) | 2021.03.06 |
---|---|
2020 KAKAO BLIND RECRUITMENT - 괄호 변환(c++) (0) | 2021.03.04 |
2020 카카오 인턴 코딩 테스트 - 2번. 수식 최대화(c++) (0) | 2021.03.03 |
프로그래머스. 징검다리 건너기(c++) / 이분탐색 (0) | 2021.02.25 |
2020 카카오 인턴 코딩 테스트 - 4번. 경주로 건설(c++) (0) | 2020.07.21 |
Comments