-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathday_13b.cpp
104 lines (94 loc) · 2.78 KB
/
day_13b.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include <algorithm>
#include <fstream>
#include <iostream>
#include <limits>
#include <string>
#include <unordered_set>
#include <vector>
struct Point {
int row, col;
Point (const int row, const int col) : row(row), col(col) {}
friend std::ostream& operator << (std::ostream& os, const Point& p);
bool operator == (const Point& p) const {
return row == p.row && col == p.col;
}
bool operator < (const Point& p) const {
return row < p.row || (row == p.row && col < p.col);
}
};
std::ostream& operator << (std::ostream& os, const Point& p) {
os << "(" << p.row << ", " << p.col << ")";
return os;
}
struct hash_point {
std::size_t operator () (const Point& p) const {
return p.row << 5 + p.col;
}
};
int main(int argc, char * argv[]) {
std::string input = "../input/day_13_input";
if (argc > 1) {
input = argv[1];
}
std::string line;
std::fstream file(input);
std::vector<Point> marked;
while(std::getline(file, line)) {
if(line.size() != 0) {
const auto d = line.find(",");
marked.emplace_back(std::stoi(line.substr(0, d)), std::stoi(line.substr(d + 1, line.size() - d)));
} else {
break;
}
}
while(std::getline(file, line)) {
if (line[11] == 'x') {
for (auto& p : marked) {
const auto x = std::stoi(line.substr(13, line.size() - 13));
if (p.row > x) {
p.row = x - (p.row - x);
}
}
} else {
for (auto& p : marked) {
const auto y = std::stoi(line.substr(13, line.size() - 13));
if (p.col > y) {
p.col = y - (p.col - y);
}
}
}
// For a smaller number of points
// its more efficient not to bother sorting erasing and
// allow these operations to be repeated on duplicate points
// std::sort(std::begin(marked), std::end(marked));
// marked.erase(std::unique(std::begin(marked), std::end(marked)), std::end(marked));
}
std::unordered_set<Point, hash_point> s;
// Apparently better as using the default constructer of unordered_set
// as that constructs the element before checking if it already exists
for (const auto& p : marked) {
s.insert(p);
}
int min_col=std::numeric_limits<int>::max();
int max_col=std::numeric_limits<int>::min();
int min_row=std::numeric_limits<int>::max();
int max_row = std::numeric_limits<int>::min();
for (const auto& p : marked) {
min_col = std::min(min_col, p.col);
max_col = std::max(max_col, p.col);
min_row = std::min(min_row, p.row);
max_row = std::max(max_row, p.row);
}
// Rotated
for (int col = 0; col <= max_col; col++) {
for (int row = min_row; row <= max_row; row++) {
if (s.find(Point(row, col)) == s.end()) {
std::cout << '.';
} else {
std::cout << '#';
}
}
std::cout << '\n';
}
return 0;
}