-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday01.cpp
50 lines (43 loc) · 1.44 KB
/
day01.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
#include <algorithm>
#include <array>
#include <filesystem>
#include <iostream>
#include <map>
#include <numeric>
#include <ranges>
#include "file.hpp"
using namespace std::literals;
namespace aoc
{
void day01_calorie_counting()
{
auto input_stream = file::open("data/day01-calories.txt");
if (!input_stream.has_value())
return;
std::cout << "Day 1:" << std::endl;
std::array<std::uint64_t, 3u> top_three{};
try
{
std::map<std::uint32_t, std::uint64_t> elf_calories{};
std::uint32_t elf_id{ 0 };
for (std::string line; std::getline(*input_stream, line);)
{
if (line.empty())
++elf_id;
else
elf_calories[elf_id] += std::stoull(line);
}
for (auto const &[id, calories] : elf_calories)
{
auto min = std::min_element(top_three.begin(), top_three.end());
*min = std::max(*min, calories);
}
}
catch (std::exception const &e)
{
std::cerr << "Exception caught: " << e.what() << std::endl;
}
std::cout << "\tPart 1) Maximum calories carried by an elf: " << std::ranges::max(top_three) << std::endl;
std::cout << "\tPart 2) Total calories carried by the top three elves: " << std::reduce(top_three.cbegin(), top_three.cend()) << std::endl;
}
}