-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge9.cpp
64 lines (50 loc) · 2.49 KB
/
challenge9.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
#include "challenge9.hpp"
#include "helper.hpp"
#include "print.hpp"
#include <algorithm>
#include <functional>
#include <iterator>
#include <ranges>
namespace {
using Sequence = std::vector<std::int64_t>;
std::vector<Sequence> parse(const std::vector<std::string_view>& input) {
std::vector<Sequence> sequences;
for ( const auto& line : input ) {
if ( line.empty() ) {
continue;
} //if ( line.empty() )
auto& currentSequence = sequences.emplace_back();
std::ranges::transform(splitString(line, ' '), std::back_inserter(currentSequence), convert);
} //for ( const auto& line : input )
return sequences;
}
template<typename Accessor, typename Combination>
std::int64_t extraPolateRow(const std::vector<std::int64_t>& row, const Accessor& accessor,
const Combination& combination) noexcept {
std::vector<std::int64_t> nextRow(row.size() - 1);
const auto op = [](std::int64_t left, std::int64_t right) noexcept { return right - left; };
std::ranges::transform(row, row | std::views::drop(1), nextRow.begin(), op);
if ( std::ranges::all_of(nextRow, [](auto x) noexcept { return x == 0; }) ) {
return std::invoke(accessor, row);
} //if ( std::ranges::all_of(nextRow, [](auto x) noexcept { return x == 0; }) )
const auto extraPolated = extraPolateRow(nextRow, accessor, combination);
return combination(std::invoke(accessor, row), extraPolated);
}
std::int64_t extraPolateSequence(const Sequence& sequence) noexcept {
return extraPolateRow(sequence, static_cast<const std::int64_t& (Sequence::*)() const>(&Sequence::back),
std::plus<>{});
}
std::int64_t extraPolateSequenceBackwards(const Sequence& sequence) noexcept {
return extraPolateRow(sequence, static_cast<const std::int64_t& (Sequence::*)() const>(&Sequence::front),
std::minus<>{});
}
} //namespace
bool challenge9(const std::vector<std::string_view>& input) {
const auto sequences = parse(input);
const auto sum1 = std::ranges::fold_left(sequences | std::views::transform(extraPolateSequence), 0, std::plus<>{});
myPrint(" == Result of Part 1: {:d} ==\n", sum1);
const auto sum2 =
std::ranges::fold_left(sequences | std::views::transform(extraPolateSequenceBackwards), 0, std::plus<>{});
myPrint(" == Result of Part 2: {:d} ==\n", sum2);
return sum1 == 1'974'232'246 && sum2 == 928;
}