From 3a6a074ece9ee51582b4166bee5f109cde329de2 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Sun, 6 Dec 2020 01:26:47 -0500 Subject: [PATCH] Clean up day 6 --- day6/day6.cpp | 94 ++++++++++++++++++++++++++++++--------------------- 1 file changed, 56 insertions(+), 38 deletions(-) diff --git a/day6/day6.cpp b/day6/day6.cpp index 378353f..d6d2aaa 100644 --- a/day6/day6.cpp +++ b/day6/day6.cpp @@ -9,7 +9,7 @@ #include #include -std::vector read_input(const std::string &filename) { +std::vector readInput(const std::string &filename) { std::vector input; std::string line; std::ifstream file(filename); @@ -20,58 +20,76 @@ std::vector read_input(const std::string &filename) { return input; } -int part1(const std::vector &input) { - int total = 0; - std::set groups; - for (std::string_view line : input) { +/** + * Separate the inputs into groups - each inner vector is a list of lines within that group (separated by newlines) + * @param input The puzzle input + * @return std::vector> The inputs grouped by newlines + */ +std::vector> getGroups(const std::vector &input) { + std::vector> groups; + std::vector currentGroup; + for (std::string line : input) { if (line.length() == 0) { - total += groups.size(); - groups.clear(); + groups.push_back(currentGroup); + currentGroup.clear(); continue; } - for (char item : line) { - groups.insert(item); + currentGroup.push_back(line); + } + + groups.push_back(currentGroup); + return groups; +} + +int part1(const std::vector> &groups) { + int total = 0; + for (const std::vector &group : groups) { + std::set groupAnswers; + for (const std::string &personAnswers : group) { + std::for_each(personAnswers.cbegin(), personAnswers.cend(), [&groupAnswers](char answer) { + groupAnswers.insert(answer); + }); } + total += groupAnswers.size(); } return total; } -int part2(const std::vector &input) { +int part2(const std::vector> &groups) { int total = 0; - std::set commonAnswers; + // Make a set of all possible answers, from a to z. + std::set allPossibleAnswers; for (char i = 'a'; i <= 'z'; i++) { - commonAnswers.insert(i); + allPossibleAnswers.insert(i); } - for (std::string_view line : input) { - if (line.length() == 0) { - total += commonAnswers.size(); - commonAnswers.clear(); - for (char i = 'a'; i <= 'z'; i++) { - commonAnswers.insert(i); - } + for (const std::vector &group : groups) { + // Not technically needed for the problem but it would be incorrect if this happened :) total would add 26. + if (group.size() == 0) { continue; } + // Copy all possible answers so we can produce a set intersection with them + std::set commonAnswers(allPossibleAnswers); + for (const std::string &rawPersonAnswers : group) { + std::set personAnswers; + std::for_each(rawPersonAnswers.cbegin(), rawPersonAnswers.cend(), [&personAnswers](char answer) { + personAnswers.insert(answer); + }); - std::set personAnswers; - for (char item : line) { - personAnswers.insert(item); + std::set intersection; + std::set_intersection( + personAnswers.begin(), + personAnswers.end(), + commonAnswers.begin(), + commonAnswers.end(), + std::inserter(intersection, intersection.begin())); + + commonAnswers = std::move(intersection); } - std::set intersection; - std::set_intersection( - personAnswers.begin(), - personAnswers.end(), - commonAnswers.begin(), - commonAnswers.end(), - std::inserter(intersection, intersection.begin())); - - std::string out; - folly::join(" ", commonAnswers.begin(), commonAnswers.end(), out); - std::cout << out << std::endl; - commonAnswers = std::move(intersection); + total += commonAnswers.size(); } return total; @@ -83,8 +101,8 @@ int main(int argc, char *argv[]) { return 1; } - auto input = read_input(argv[1]); - input.push_back(""); - std::cout << part1(input) << std::endl; - std::cout << part2(input) << std::endl; + auto input = readInput(argv[1]); + auto groups = getGroups(input); + std::cout << part1(groups) << std::endl; + std::cout << part2(groups) << std::endl; }