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
|
#include <filesystem>
#include <fstream>
#include <iostream>
#include <tuple>
#include <vector>
using namespace std;
namespace {
vector<tuple<unsigned long, unsigned long>>
read_file(const filesystem::path& filename)
{
ifstream file{ filename };
unsigned long depth = 0;
unsigned long range = 0;
char colon = 0;
vector<tuple<unsigned long, unsigned long>> data;
while ( file >> depth >> colon >> range ) {
data.emplace_back(depth, range);
}
return data;
}
template<typename T>
T
get_pos(T depth, T range, T time)
{
const auto period = 2 * (range - 1);
const auto remainder = (depth + time) % period;
return remainder < range ? remainder : period - remainder;
}
void
part1(const vector<tuple<unsigned long, unsigned long>>& data)
{
unsigned long sum = 0;
for ( const auto [depth, range]: data ) {
if ( get_pos(depth, range, 0UL) == 0 ) {
sum += depth * range;
}
}
cout << "Part1: " << sum << '\n';
}
void
part2(const vector<tuple<unsigned long, unsigned long>>& data)
{
for ( unsigned long delay = 0;; ++delay ) {
bool pass = true;
for ( const auto [depth, range]: data ) {
if ( get_pos(depth, range, delay) == 0 ) {
pass = false;
break;
}
}
if ( pass ) {
cout << "Part2: " << delay << '\n';
return;
}
}
}
} // namespace
int
main()
{
auto data = read_file("data/day13.txt");
part1(data);
part2(data);
}
|