-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge10.cpp
267 lines (230 loc) · 9.66 KB
/
challenge10.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#include "challenge10.hpp"
#include "helper.hpp"
#include "print.hpp"
#include <unordered_set>
#include <utility>
namespace {
enum PipeDirection : char {
NorthSouth = '|',
WestEast = '-',
NorthEast = 'L',
NorthWest = 'J',
SouthWest = '7',
SouthEast = 'F',
Ground = '.',
Animal = 'S'
};
using Row = std::string_view;
using Map = const std::vector<Row>&;
struct Coordinate {
std::size_t Row;
std::size_t Column;
constexpr bool operator==(const Coordinate&) const noexcept = default;
};
struct MovingPosition {
Coordinate Current;
Coordinate Previous;
};
Coordinate findAnimal(Map map) {
Coordinate ret;
for ( ret.Row = 0; ret.Row < map.size(); ++ret.Row ) {
ret.Column = map[ret.Row].find(PipeDirection::Animal);
if ( ret.Column != std::string_view::npos ) {
return ret;
} //if ( ret.Column != std::string_view::npos )
} //for ( ret.Row = 0; ret.Row < map.size(); ++ret.Row )
throwIfInvalid(false);
return {};
}
bool isNorth(PipeDirection d) noexcept {
return d == NorthSouth || d == NorthEast || d == NorthWest;
}
bool isSouth(PipeDirection d) noexcept {
return d == NorthSouth || d == SouthEast || d == SouthWest;
}
bool isWest(PipeDirection d) noexcept {
return d == WestEast || d == NorthWest || d == SouthWest;
}
bool isEast(PipeDirection d) noexcept {
return d == WestEast || d == NorthEast || d == SouthEast;
}
PipeDirection directionFrom(int direction) {
switch ( direction ) {
case 0x03 : return NorthWest;
case 0x05 : return NorthEast;
case 0x06 : return WestEast;
case 0x09 : return NorthSouth;
case 0x0A : return SouthWest;
case 0x0C : return SouthEast;
} //switch ( direction )
throwIfInvalid(false);
return Ground;
}
auto findNeighbors(Map map, Coordinate start) {
std::array<Coordinate, 2> ret;
std::size_t found = 0;
const bool checkNorth = start.Row > 0;
const bool checkSouth = start.Row < map.size() - 1;
const bool checkWest = start.Column > 0;
const bool checkEast = start.Column < map[0].size() - 1;
int direction = 0;
for ( int neighbor = 0; neighbor < 4 && found != 2; ++neighbor ) {
switch ( neighbor ) {
case 0 : {
if ( checkNorth && isSouth(static_cast<PipeDirection>(map[start.Row - 1][start.Column])) ) {
ret[found] = {start.Row - 1, start.Column};
++found;
direction |= 0x01;
} //if ( checkNorth && isSouth(static_cast<PipeDirection>(map[start.Row - 1][start.Column]))
break;
} //case 0
case 1 : {
if ( checkWest && isEast(static_cast<PipeDirection>(map[start.Row][start.Column - 1])) ) {
ret[found] = {start.Row, start.Column - 1};
++found;
direction |= 0x02;
} //if ( checkWest && isEast(static_cast<PipeDirection>(map[start.Row][start.Column - 1])) )
break;
} //case 1
case 2 : {
if ( checkEast && isWest(static_cast<PipeDirection>(map[start.Row][start.Column + 1])) ) {
ret[found] = {start.Row, start.Column + 1};
++found;
direction |= 0x04;
} //if ( checkEast && isWest(static_cast<PipeDirection>(map[start.Row][start.Column + 1])) )
break;
} //case 2
case 3 : {
if ( checkSouth && isNorth(static_cast<PipeDirection>(map[start.Row + 1][start.Column])) ) {
ret[found] = {start.Row + 1, start.Column};
++found;
direction |= 0x08;
} //if ( checkSouth && isNorth(static_cast<PipeDirection>(map[start.Row + 1][start.Column])) )
break;
} //case 3
} //switch ( neighbor )
} //for ( int neighbor = 0; neighbor < 9 && found != 2; ++neighbor )
throwIfInvalid(found == 2);
return std::pair{ret, directionFrom(direction)};
}
void move(Map map, MovingPosition& pos) {
auto previous = std::exchange(pos.Previous, pos.Current);
switch ( static_cast<PipeDirection>(map[pos.Current.Row][pos.Current.Column]) ) {
case Animal :
case Ground : throwIfInvalid(false); break;
case NorthSouth : pos.Current.Row += pos.Current.Row - previous.Row; break;
case WestEast : pos.Current.Column += pos.Current.Column - previous.Column; break;
case NorthWest : {
if ( pos.Current.Row == previous.Row ) {
--pos.Current.Row;
} //if ( pos.Current.Row == previous.Row )
else {
--pos.Current.Column;
} //else -> if ( pos.Current.Row == previous.Row )
break;
} //case NorthWest
case NorthEast : {
if ( pos.Current.Row == previous.Row ) {
--pos.Current.Row;
} //if ( pos.Current.Row == previous.Row )
else {
++pos.Current.Column;
} //else -> if ( pos.Current.Row == previous.Row )
break;
} //case NorthEast
case SouthWest : {
if ( pos.Current.Row == previous.Row ) {
++pos.Current.Row;
} //if ( pos.Current.Row == previous.Row )
else {
--pos.Current.Column;
} //else -> if ( pos.Current.Row == previous.Row )
break;
} //case SouthWest
case SouthEast : {
if ( pos.Current.Row == previous.Row ) {
++pos.Current.Row;
} //if ( pos.Current.Row == previous.Row )
else {
++pos.Current.Column;
} //else -> if ( pos.Current.Row == previous.Row )
break;
} //case SouthEast
} //switch ( static_cast<PipeDirection>(map[pos.Current.Row][pos.Current.Column]) )
return;
}
} //namespace
namespace std {
template<>
struct hash<Coordinate> {
size_t operator()(const Coordinate& c) const noexcept {
std::hash<std::size_t> h;
return h(c.Row << 8) ^ h(c.Column);
}
};
} //namespace std
bool challenge10(const std::vector<std::string_view>& input) {
const auto& map = input;
const auto animalPosition = findAnimal(map);
const auto [startPositions, animalDirection] = findNeighbors(map, animalPosition);
MovingPosition pos1{startPositions[0], animalPosition};
MovingPosition pos2{startPositions[1], animalPosition};
std::unordered_set<Coordinate> partOfLoop;
partOfLoop.insert(animalPosition);
partOfLoop.insert(startPositions[0]);
partOfLoop.insert(startPositions[1]);
std::int64_t moves = 1;
while ( pos1.Current != pos2.Current ) {
move(map, pos1);
move(map, pos2);
++moves;
partOfLoop.insert(pos1.Current);
partOfLoop.insert(pos2.Current);
} //while ( pos1.Current != pos2.Current )
myPrint(" == Result of Part 1: {:d} ==\n", moves);
std::int64_t withinLoop = 0;
for ( std::size_t row = 0; row < map.size(); ++row ) {
bool within = false;
bool fromNorth = false;
for ( Coordinate pos{row, 0}; pos.Column < map[row].size(); ++pos.Column ) {
if ( partOfLoop.contains(pos) ) {
auto direction = static_cast<PipeDirection>(map[pos.Row][pos.Column]);
if ( direction == Animal ) {
direction = animalDirection;
} //if ( direction == Animal )
if ( within ) {
switch ( direction ) {
case Animal :
case Ground : throwIfInvalid(false); break;
case WestEast : break;
case NorthSouth : within = false; break;
case NorthEast : fromNorth = true; break;
case SouthWest : within = !fromNorth; break;
case SouthEast : fromNorth = false; break;
case NorthWest : within = fromNorth; break;
} //switch ( direction )
} //if ( within )
else {
switch ( direction ) {
case Animal :
case Ground : throwIfInvalid(false); break;
case WestEast : break;
case NorthSouth : within = true; break;
case NorthEast : fromNorth = true; break;
case SouthWest : within = fromNorth; break;
case SouthEast : fromNorth = false; break;
case NorthWest : within = !fromNorth; break;
} //switch ( direction )
} //else -> if ( within )
} //if ( partOfLoop.cotains(pos) )
else {
if ( within ) {
++withinLoop;
} //if ( within )
} //else -> if ( partOfLoop.contains(pos) )
} //for ( std::size_t column = 0; pos.Column < map[row].size(); ++pos.Column )
throwIfInvalid(!within);
} //for ( std::size_t row = 0; row < map.size(); ++row )
myPrint(" == Result of Part 2: {:d} ==\n", withinLoop);
return moves == 6786 && withinLoop == 495;
}