-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path09.cpp
63 lines (52 loc) · 1.2 KB
/
09.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
#include <chrono>
#include <iostream>
int main() {
auto tstart = std::chrono::high_resolution_clock::now();
int pt1 = 0;
int pt2 = 0;
std::string input;
std::getline(std::cin, input);
auto it = input.begin();
auto end = input.end();
int group_depth = 1;
bool in_garbage = false;
while (it != end) {
if (in_garbage) {
switch (*it) {
case '!':
it++;
break;
case '>':
in_garbage = false;
break;
default:
pt2 += 1;
break;
}
} else {
switch (*it) {
case '{':
group_depth += 1;
break;
case '}':
group_depth -= 1;
pt1 += group_depth;
break;
case '<':
in_garbage = true;
break;
}
}
it++;
}
std::cout << "--- Day 9: Stream Processing ---\n";
std::cout << "Part 1: " << pt1 << "\n";
std::cout << "Part 2: " << pt2 << "\n";
auto tstop = std::chrono::high_resolution_clock::now();
auto duration =
std::chrono::duration_cast<std::chrono::microseconds>(tstop - tstart);
std::cout << "Time: " << (static_cast<double>(duration.count()) / 1000.0)
<< " ms"
<< "\n";
return EXIT_SUCCESS;
}