가볍게 풀 수 있는 문제
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
|
#include <iostream>
#include <queue>
#include <string>
#include <vector>
#include <algorithm>
int main(void) {
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
int len, N;
std::cin >> len >> N;
std::vector<char> alphabet(N);
for (int i = 0; i < N; i++) {
std::cin >> alphabet[i];
}
std::vector<std::string> total;
std::queue<std::pair<std::string, int>> mQ;
mQ.push({ "", 0 });
while (!mQ.empty()) {
std::string key = mQ.front().first;
int count = mQ.front().second;
mQ.pop();
if (key.size() == len) {
int consonant = 0, vowel = 0;
for (int i = 0; i < len; i++) {
if (key[i] == 'a' || key[i] == 'i' || key[i] == 'e' || key[i] == 'o' || key[i] == 'u') {
vowel++;
}
else {
consonant++;
}
}
if (consonant >= 2 && vowel >= 1) {
total.push_back(key);
}
continue;
}
for (int i = 0; i < N; i++) {
if ((key.size() >= 1 && key[key.size() - 1] < alphabet[i]) || key.size() < 1) {
mQ.push({ key + alphabet[i], count + 1 });
}
}
}
std::sort(total.begin(), total.end());
for (int i = 0; i < total.size(); i++) {
std::cout << total[i] << "\n";
}
return 0;
}
|
cs |
'problem solving' 카테고리의 다른 글
1991번: 트리 순회 (0) | 2020.02.23 |
---|---|
1929번: 소수 구하기 (0) | 2020.02.23 |
1525번: 퍼즐 (0) | 2020.02.22 |
1208번: 부분수열의 합2 (0) | 2020.02.20 |
1182번: 부분수열의 합 (0) | 2020.02.20 |