blob: f46112af5f0305df06549dd9f4f6936f805e7860 (
plain)
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
|
#include <filesystem>
#include <fstream>
#include <iostream>
#include <tuple>
#include <vector>
using namespace std;
namespace {
using Pos = tuple<long, long>;
vector<Pos>
read_file(const filesystem::path& filename)
{
ifstream file{ filename };
vector<Pos> data;
long x{};
long y{};
char skip{};
while ( file >> x >> skip >> y ) {
data.emplace_back(x, y);
}
return data;
}
void
part1(const vector<Pos>& data)
{
auto area = numeric_limits<long>::min();
for ( size_t i = 0; i != data.size(); ++i ) {
for ( size_t j = i + 1; j != data.size(); ++j ) {
const auto [x1, y1] = data[i];
const auto [x2, y2] = data[j];
const auto width = abs(x1 - x2) + 1;
const auto height = abs(y1 - y2) + 1;
area = max(area, width * height);
}
}
cout << "Part 1: " << area << '\n';
}
} // namespace
int
main()
{
auto data = read_file("data/day09.txt");
part1(data);
}
|