코딩테스트 연습 - 신규 아이디 추천
접근 방법
복잡해 보일 수 있지만 차근차근 한단계 씩 해나가면 간단히 해결할 수 있는 문제입니다. c++의 regex를 활용하면 조금 더 수월하게 풀 수 있습니다.
코드
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
| #include <bits/stdc++.h>
using namespace std;
string solution(string new_id) {
string step1;
for (auto c : new_id) {
step1 += tolower(c);
}
cout << "step1 : " << step1 << endl;
string step2;
for (auto c : step1) {
if ('a' <= c and c <= 'z') {
step2 += c;
continue;
}
if ('0' <= c and c <= '9') {
step2 += c;
continue;
}
if (c == '-' or c == '_' or c == '.') {
step2 += c;
}
}
cout << "step2 : " << step2 << endl;
string step3 = regex_replace(step2, regex("[.]+"), ".");
cout << "step3 : " << step3 << endl;
string step4 = regex_replace(step3, regex("^[.]|[.]$"), "");
cout << "step4 : " << step4 << endl;
string step5 = step4;
if (step5 == "") {
step5 = "a";
}
string step6 = step5;
if (step6.length() >= 16) {
step6 = step6.substr(0, 15);
step6 = regex_replace(step6, regex("[.]$"), "");
}
string step7 = step6;
if (step7.length() <= 2) {
while (step7.length() != 3) {
step7.push_back(step7.back());
}
}
return step7;
}
|