-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLv2_모음사전.cpp
82 lines (70 loc) · 1.62 KB
/
Lv2_모음사전.cpp
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
vector<string> words;
const string w[] = {"A","E","I","O","U"};
bool cmp(string s1, string s2) {
int len1 = s1.length();
int len2 = s2.length();
if (len1 < len2) {
for (int i = 0; i < len1; ++i) {
if (s1[i] < s2[i])
return true;
else if (s1[i] == s2[i])
continue;
else
return false;
}
return true;
}
else if (len1 == len2) {
for (int i = 0; i < len1; ++i) {
if (s1[i] < s2[i])
return true;
else if (s1[i] == s2[i])
continue;
else
return false;
}
}
else {
for (int i = 0; i < len2; ++i) {
if (s1[i] < s2[i])
return true;
else if (s1[i] == s2[i])
continue;
else
return false;
}
return false;
}
return true;
}
void insertString(string s, int cnt, int goal) {
if (cnt == goal) {
words.push_back(s);
return;
}
for (int i = 0; i < 5; ++i) {
insertString(s+w[i], cnt + 1, goal);
}
}
int solution(string word) {
int answer = 0;
for (int i = 1; i <= 5; ++i)
insertString("", 0, i);
sort(words.begin(), words.end(), cmp);
for (int i = 0; i < words.size(); ++i) {
if (words[i] == word) {
answer = i + 1;
break;
}
}
return answer;
}
int main() {
cout << solution("AAAAE");
return 0;
}