Advent of code 2023 - day 2 (C++)

Categories: programming challenge, C++
It's a new day in the Advent! Today the elves are playing with cubes. This time I decided to use C++ to solve their problem.

Part 1

[...]

As you walk, the Elf shows you a small bag and some cubes which are either red, green, or blue. Each time you play this game, he will hide a secret number of cubes of each color in the bag, and your goal is to figure out information about the number of cubes.

To get information, once a bag has been loaded with cubes, the Elf will reach into the bag, grab a handful of random cubes, show them to you, and then put them back in the bag. He'll do this a few times per game.

You play several games and record the information from each game (your puzzle input). Each game is listed with its ID number (like the 11 in Game 11: ...) followed by a semicolon-separated list of subsets of cubes that were revealed from the bag (like 3 red, 5 green, 4 blue).

For example, the record of a few games might look like this:
Game 1: 3 blue, 4 red; 1 red, 2 green, 6 blue; 2 green
Game 2: 1 blue, 2 green; 3 green, 4 blue, 1 red; 1 green, 1 blue
Game 3: 8 green, 6 blue, 20 red; 5 blue, 4 red, 13 green; 5 green, 1 red
Game 4: 1 green, 3 red, 6 blue; 3 green, 6 red; 3 green, 15 blue, 14 red
Game 5: 6 red, 1 blue, 3 green; 2 blue, 1 red, 2 green

In game 1, three sets of cubes are revealed from the bag (and then put back again). The first set is 3 blue cubes and 4 red cubes; the second set is 1 red cube, 2 green cubes, and 6 blue cubes; the third set is only 2 green cubes.

The Elf would first like to know which games would have been possible if the bag contained only 12 red cubes, 13 green cubes, and 14 blue cubes?

In the example above, games 1, 2, and 5 would have been possible if the bag had been loaded with that configuration. However, game 3 would have been impossible because at one point the Elf showed you 20 red cubes at once; similarly, game 4 would also have been impossible because the Elf showed you 15 blue cubes at once. If you add up the IDs of the games that would have been possible, you get 8.

Determine which games would have been possible if the bag had been loaded with only 12 red cubes, 13 green cubes, and 14 blue cubes. What is the sum of the IDs of those games?


Using an object oriented language for this problem makes sense. The first step before implementing the algorithm is to create classes that represent games, sets and cubes.

C++
#include <stringUtilities.hpp>
#include <fileUtilities.h>
#include <unordered_map>
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;

struct Set {
	unordered_map<string, int> cubes;
	void addCube(string const & color, int amount)
	{
		cubes.insert({ color, amount });
	}
	int operator[](const char* color) 
        {
		return cubes[color];
	}
};
struct Game {
	Game(vector<Set> const & sets) : _sets(sets)
	{}
	vector<Set> _sets;
};

Now let's load the input and parse it to a vector of games. I use a few helper functions that I implemented earlier. You can find everything in my repository.

C++
int main()
{
	auto lines = split(readFile("../inputFiles/2023_2.txt"), '\n');
	vector<Game> games;
	vector<Set> sets;
	for (const auto& line : lines)
	{
		sets.clear();
		for (const auto& strSet : split(line, ';', line.find(':') + 2))
		{
			Set set;
			for (string& strColor : split(strSet, ','))
			{
				auto t = split(ltrim_copy(strColor), ' ');
				set.addCube(t[1], stoi(t[0]));
			}
			sets.push_back(set);
		}
		games.push_back(Game{ sets });
	}
}

Now let's have a look at the problem.

Determine which games would have been possible if the bag had been loaded with only 12 red cubes, 13 green cubes, and 14 blue cubes. What is the sum of the IDs of those games?.

We can iterate over each game. If the game had been possible, we increment a counter by the id (index + 1) of the game. I prefer to use iterators as much as possible, however, as we need the index, we have to iterate manually this time.

C++
int idSum = 0;
for (int i = 0; i < games.size(); ++i)
{
	if (games[i].isGamePossible())
		idSum += i + 1;
}
cout << idSum << endl;

Checking if a game would be impossible is very simple. We just check if there was any set with an amount of cubes higher than the given number.

C++
bool isGamePossible()
{
	for (auto& set : _sets)
	{
		if (set["red"] > 12 || set["green"] > 13 || set["blue"] > 14)
			return false;
	}
	return true;
}

Part 2

[...]

As you continue your walk, the Elf poses a second question: in each game you played, what is the fewest number of cubes of each color that could have been in the bag to make the game possible?

Again consider the example games from earlier:
Game 1: 3 blue, 4 red; 1 red, 2 green, 6 blue; 2 green
Game 2: 1 blue, 2 green; 3 green, 4 blue, 1 red; 1 green, 1 blue
Game 3: 8 green, 6 blue, 20 red; 5 blue, 4 red, 13 green; 5 green, 1 red
Game 4: 1 green, 3 red, 6 blue; 3 green, 6 red; 3 green, 15 blue, 14 red
Game 5: 6 red, 1 blue, 3 green; 2 blue, 1 red, 2 green

In game 1, the game could have been played with as few as 4 red, 2 green, and 6 blue cubes. If any color had even one fewer cube, the game would have been impossible.
Game 2 could have been played with a minimum of 1 red, 3 green, and 4 blue cubes.
Game 3 must have been played with at least 20 red, 13 green, and 6 blue cubes.
Game 4 required at least 14 red, 3 green, and 15 blue cubes.
Game 5 needed no fewer than 6 red, 3 green, and 2 blue cubes in the bag.

The power of a set of cubes is equal to the numbers of red, green, and blue cubes multiplied together. The power of the minimum set of cubes in game 1 is 48. In games 2-5 it was 12, 1560, 630, and 36, respectively. Adding up these five powers produces the sum 2286.

For each game, find the minimum set of cubes that must have been present. What is the sum of the power of these sets?


Because we have already modeled the games to objects, this will be a simple change. The power of a game is caculated by muliplying the mimum amount of required cubes per game. To get this number we just get the maximum per color, for all sets of a game.

C++
int getPower() 
{
	int maxRed = 0, maxGreen = 0, maxBlue = 0;
	for (auto& set : _sets)
	{
		maxRed = max(maxRed, set["red"]);
		maxGreen = max(maxGreen, set["green"]);
		maxBlue = max(maxBlue, set["blue"]);
	}
	return maxRed * maxGreen * maxBlue;
}

And then we just call this method and calculate the sum for all games.

C++
int powerSum = 0;
for (int i = 0; i < games.size(); ++i)
{
	powerSum += games[i].getPower();
}
cout << powerSum << endl;