-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathday_05b.cpp
52 lines (49 loc) · 1.52 KB
/
day_05b.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
#include <fstream>
#include <iostream>
#include <string>
#include <unordered_map>
#include <vector>
bool is_forbidden(const char c1, const char c2) {
if (c1 == 'a' && c2 == 'b') return true;
if (c1 == 'c' && c2 == 'd') return true;
if (c1 == 'p' && c2 == 'q') return true;
if (c1 == 'x' && c2 == 'y') return true;
return false;
}
int main(int argc, char* argv[]) {
std::string input = "../input/day_05_input";
if (argc > 1) {
input = argv[1];
}
std::ifstream file(input);
std::string line;
int nice_count = 0;
while(std::getline(file, line)) {
int vowel_count = 0;
bool contains_repeated = false;
std::unordered_map<std::string, std::vector<int>> indices_of_pairs;
for (int i = 0; i < line.size() - 2; i++) {
if (line[i] == line[i+2]) {
contains_repeated = true;
}
indices_of_pairs[std::string(line.begin() + i, line.begin() + i + 2)].push_back(i);
}
indices_of_pairs[std::string(line.begin() + line.size() - 2, line.begin() + line.size())].push_back(line.size() - 2);
if (!contains_repeated) continue;
bool counts = false;
for (const auto& [sv, indices] : indices_of_pairs) {
if (indices.size() < 2) continue;
counts = true;
for (int i = 0; i < indices.size() - 1; i++) {
if (indices[i] + 1 == indices[i+1]) {
counts = false;
}
}
if (counts) break;
}
if (!counts) continue;
nice_count++;
}
std::cout << nice_count << '\n';
return 0;
}