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
|
#include <cstddef>
#include <fstream>
#include <iostream>
#include <map>
#include <queue>
#include <regex>
#include <set>
#include <tuple>
#include <vector>
using namespace std;
using pos_type = tuple<long, long>;
using velo_type = tuple<long, long>;
vector<tuple<pos_type, velo_type>>
read_file(string_view filename)
{
static const regex pattern{ R"(^p=(-?\d+),(-?\d+) v=(-?\d+),(-?\d+)$)" };
fstream input{ filename };
vector<tuple<pos_type, velo_type>> data;
for ( string line; getline(input, line); ) {
smatch matches;
if ( regex_search(line, matches, pattern) ) {
data.push_back({ { stoi(matches[1]), stoi(matches[2]) },
{ stoi(matches[3]), stoi(matches[4]) } });
}
}
return data;
}
/*
void
print(const vector<tuple<pos_type, velo_type>>& robots, long width, long height)
{
map<pos_type, long> map;
for ( const auto& [pos, velo]: robots ) {
map[pos]++;
}
for ( long y = 0; y != height; ++y ) {
for ( long x = 0; x != width; ++x ) {
auto pos = map.find({ x, y });
if ( pos != map.end() ) {
cout << pos->second;
}
else {
cout << '.';
}
}
cout << '\n';
}
cout << endl;
}
*/
/*
void
print_pic(const vector<tuple<pos_type, velo_type>>& robots, long width, long height)
{
map<pos_type, long> map;
for ( const auto& [pos, velo]: robots ) {
map[pos]++;
}
for ( long y = 0; y != height; ++y ) {
for ( long x = 0; x != width; ++x ) {
auto pos = map.find({ x, y });
cout << (pos != map.end() ? 'X' : ' ');
}
cout << '\n';
}
cout << endl;
}
*/
long
count(const vector<tuple<pos_type, velo_type>>& robots, long width, long height)
{
map<pos_type, long> map;
const auto width_half = width / 2;
const auto height_half = height / 2;
for ( const auto& [pos, velo]: robots ) {
const auto [x, y] = pos;
if ( x == width_half || y == height_half ) {
continue;
}
map[{ x / (width_half + 1), y / (height_half + 1) }]++;
}
long result = 1;
for ( const auto& [pos, count]: map ) {
result *= count;
}
return result;
}
void
move(vector<tuple<pos_type, velo_type>>& robots, long width, long height)
{
for ( auto& [pos, velo]: robots ) {
auto& [x, y] = pos;
auto [vx, vy] = velo;
x = (x + width + vx) % width;
y = (y + height + vy) % height;
}
}
void
part1(vector<tuple<pos_type, velo_type>> robots, long width, long height)
{
for ( long second = 0; second != 100; ++second ) {
move(robots, width, height);
}
cout << count(robots, width, height) << endl;
}
void
part2(vector<tuple<pos_type, velo_type>> robots, long width, long height)
{
auto min_result = numeric_limits<long>::max();
long second_found = 0;
for ( long second = 0; second != 100000; ++second ) {
auto result = count(robots, width, height);
if ( result < min_result ) {
second_found = second;
min_result = result;
}
move(robots, width, height);
}
cout << second_found << endl;
}
void
part2_alternative(vector<tuple<pos_type, velo_type>> robots, long width, long height)
{
set<pos_type> seen;
for ( long second = 0; second != 100000; ++second ) {
seen.clear();
bool overlap = false;
for ( const auto& [pos, velo]: robots ) {
if ( seen.contains(pos) ) {
overlap = true;
break;
}
seen.insert(pos);
}
if ( !overlap ) {
cout << second << endl;
break;
}
move(robots, width, height);
}
}
constexpr vector<pos_type>
neighbors(pos_type pos)
{
const auto [x, y] = pos;
return { { x - 1, y }, { x, y - 1 }, { x + 1, y }, { x, y + 1 } };
}
size_t
flood_fill(const vector<tuple<pos_type, velo_type>>& robots)
{
set<pos_type> positions;
for ( const auto& [pos, velo]: robots ) {
positions.insert(pos);
}
size_t max_seen = 0;
for ( const auto& start: positions ) {
set<pos_type> seen;
queue<pos_type> queue;
queue.push(start);
while ( !queue.empty() ) {
auto pos = queue.front();
queue.pop();
if ( seen.contains(pos) ) {
continue;
}
seen.insert(pos);
for ( const auto& neighbor: neighbors(pos) ) {
if ( positions.contains(neighbor) ) {
queue.push(neighbor);
}
}
}
max_seen = max(max_seen, seen.size());
}
return max_seen;
}
void
part2_flood_fill(vector<tuple<pos_type, velo_type>> robots, long width, long height)
{
size_t max_count = 0;
long second_found = 0;
for ( long second = 0; second != 100000; ++second ) {
auto count = flood_fill(robots);
if ( count > max_count ) {
max_count = count;
second_found = second;
}
move(robots, width, height);
}
cout << second_found << endl;
}
int
main()
{
#if 0
auto robots = read_file("data/day14-sample1.txt");
part1(robots, 11, 7);
#else
auto robots = read_file("data/day14.txt");
part1(robots, 101, 103);
part2(robots, 101, 103);
part2_alternative(robots, 101, 103);
part2_flood_fill(robots, 101, 103);
#endif
}
|