1 Setup
1.1 Libraries
First we need to load the required libraries.
library(httr)
library(xml2)
library(magrittr)
library(tibble)
library(dplyr)
library(stringr)
library(purrr)
1.2 Retrieve Data from AoC
session_cookie <- set_cookies(session = keyring::key_get("AoC-GitHub-Cookie"))
base_url <- paste0("https://adventofcode.com/2021/day/", params$task_nr)
puzzle <- GET(base_url,
session_cookie) %>%
content(encoding = "UTF-8") %>%
xml_find_all("///article") %>%
lapply(as.character)
puzzle_data <- GET(paste0(base_url, "/input"),
session_cookie) %>%
content(encoding = "UTF-8") %>%
read.table(text = ., colClasses = "character") %>%
as_tibble() %>%
set_names("status_code")
2 Puzzle Day 3
2.1 Part 1
2.1.1 Description
— Day 3: Binary Diagnostic —
The submarine has been making some odd creaking noises, so you ask it to produce a diagnostic report just in case.
The diagnostic report (your puzzle input) consists of a list of binary numbers which, when decoded properly, can tell you many useful things about the conditions of the submarine. The first parameter to check is the power consumption.
You need to use the binary numbers in the diagnostic report to generate two new binary numbers (called the gamma rate and the epsilon rate). The power consumption can then be found by multiplying the gamma rate by the epsilon rate.
Each bit in the gamma rate can be determined by finding the most common bit in the corresponding position of all numbers in the diagnostic report. For example, given the following diagnostic report:
00100
11110
10110
10111
10101
01111
00111
11100
10000
11001
00010
01010
Considering only the first bit of each number, there are five 0
bits and seven 1
bits. Since the most common bit is 1
, the first bit of the gamma rate is 1
.
The most common second bit of the numbers in the diagnostic report is 0
, so the second bit of the gamma rate is 0
.
The most common value of the third, fourth, and fifth bits are 1
, 1
, and 0
, respectively, and so the final three bits of the gamma rate are 110
.
So, the gamma rate is the binary number 10110
, or 22
in decimal.
The epsilon rate is calculated in a similar way; rather than use the most common bit, the least common bit from each position is used. So, the epsilon rate is 01001
, or 9
in decimal. Multiplying the gamma rate (22
) by the epsilon rate (9
) produces the power consumption, 198
.
Use the binary numbers in your diagnostic report to calculate the gamma rate and epsilon rate, then multiply them together. What is the power consumption of the submarine? (Be sure to represent your answer in decimal, not binary.)
2.1.2 Solution
We pad all binary numbers from left with 0’s and transform the data into a matrix where each column represents a digit of the binary code.1 Since, we padded all numbers to the maximum length, all items will be properly filled.
Then we can simply calculate the column sum to determine the bit. We will code
the bits with logicals
which makes the negation easy (N.B. Integers would
have been likewise easy to use). The last step is then to calculate the decimal
representation (with the highest bit on the left).
digits <- max(nchar(puzzle_data$status_code))
n <- NROW(puzzle_data)
puzzle_data <- puzzle_data %>%
mutate(status_code = str_pad(as.character(status_code), digits, pad = "0"))
bin_matrix <- puzzle_data %>%
pull(status_code) %>%
str_split_fixed(boundary("character"), digits) %>%
as.numeric() %>%
matrix(n, digits) %>%
`colnames<-`(paste0("V", seq_len(digits)))
ones <- bin_matrix %>%
colSums()
gamma <- ones > round(n / 2, 0)
epsilon <- !gamma
bin2dec <- function(x) {
sum(x * 2 ^ seq(length(x) - 1, 0, -1))
}
bin2dec(gamma) * bin2dec(epsilon)
## [1] 2250414
2.2 Part 2
2.2.1 Description
— Part Two —
Next, you should verify the life support rating, which can be determined by multiplying the oxygen generator rating by the CO2 scrubber rating.
Both the oxygen generator rating and the CO2 scrubber rating are values that can be found in your diagnostic report - finding them is the tricky part. Both values are located using a similar process that involves filtering out values until only one remains. Before searching for either rating value, start with the full list of binary numbers from your diagnostic report and consider just the first bit of those numbers. Then:
- Keep only numbers selected by the bit criteria for the type of rating value for which you are searching. Discard numbers which do not match the bit criteria.
- If you only have one number left, stop; this is the rating value for which you are searching.
- Otherwise, repeat the process, considering the next bit to the right.
The bit criteria depends on which type of rating value you want to find:
-
To find oxygen generator rating, determine the most common value (
0
or1
) in the current bit position, and keep only numbers with that bit in that position. If0
and1
are equally common, keep values with a1
in the position being considered. -
To find CO2 scrubber rating, determine the least common value (
0
or1
) in the current bit position, and keep only numbers with that bit in that position. If0
and1
are equally common, keep values with a0
in the position being considered.
For example, to determine the oxygen generator rating value using the same example diagnostic report from above:
-
Start with all 12 numbers and consider only the first bit of each number. There are more
1
bits (7) than0
bits (5), so keep only the 7 numbers with a1
in the first position:11110
,10110
,10111
,10101
,11100
,10000
, and11001
. -
Then, consider the second bit of the 7 remaining numbers: there are more
0
bits (4) than1
bits (3), so keep only the 4 numbers with a0
in the second position:10110
,10111
,10101
, and10000
. -
In the third position, three of the four numbers have a
1
, so keep those three:10110
,10111
, and10101
. -
In the fourth position, two of the three numbers have a
1
, so keep those two:10110
and10111
. -
In the fifth position, there are an equal number of
0
bits and1
bits (one each). So, to find the oxygen generator rating, keep the number with a1
in that position:10111
. -
As there is only one number left, stop; the oxygen generator rating is
10111
, or23
in decimal.
Then, to determine the CO2 scrubber rating value from the same example above:
-
Start again with all 12 numbers and consider only the first bit of each number. There are fewer
0
bits (5) than1
bits (7), so keep only the 5 numbers with a0
in the first position:00100
,01111
,00111
,00010
, and01010
. -
Then, consider the second bit of the 5 remaining numbers: there are fewer
1
bits (2) than0
bits (3), so keep only the 2 numbers with a1
in the second position:01111
and01010
. -
In the third position, there are an equal number of
0
bits and1
bits (one each). So, to find the CO2 scrubber rating, keep the number with a0
in that position:01010
. -
As there is only one number left, stop; the CO2 scrubber rating is
01010
, or10
in decimal.
Finally, to find the life support rating, multiply the oxygen generator rating (23
) by the CO2 scrubber rating (10
) to get 230
.
Use the binary numbers in your diagnostic report to calculate the oxygen generator rating and CO2 scrubber rating, then multiply them together. What is the life support rating of the submarine? (Be sure to represent your answer in decimal, not binary.)
2.2.2 Solution
We will use purrr::reduce
to apply the filtering function to the columns of
the matrix (which is back-transformed to a tibble
to make use of the list like
structure). The filtering function is a binary function with parameters cond
and col
.2
* cond
is a logical vector of length NROW(data)
indicating whether
a certain row is still in the race.
* col
is simply the next column to investigate.
The function stops early (using rlang::done
), if there is only one valid item
in the list. We make again use of the fact that TRUE == 1
and FALSE == 0
.
col_filter <- function(cond, col, type = c("majority", "minority")) {
if (sum(cond) > 1) {
## are there more than one cndidates
type <- match.arg(type)
## how many 1s are there among the candidates
k <- sum(col[cond])
n <- length(col[cond])
## for which bit should we filter:
## - if there are more ones than zeros (k >= n - k) and we want to go
## for the majority than it should be 1
## - if there are less ones than zero (k < n - k) and we want to go
## for the majority than it should be 0
goal <- switch(type, majority = (k >= n - k), minority = (k < n - k))
new_cond <- rep(FALSE, length(col))
## candidates stay candidates if the have the right bit
new_cond[cond] <- col[cond] == goal
new_cond
} else {
done(cond)
}
}
oxygen <- bin_matrix %>%
as_tibble() %>%
reduce(col_filter, .init = rep(TRUE, NROW(.))) %>%
`[`(bin_matrix, .) %>%
bin2dec()
co2 <- bin_matrix %>%
as_tibble() %>%
reduce(col_filter, type = "minority", .init = rep(TRUE, NROW(.))) %>%
`[`(bin_matrix, .) %>%
bin2dec()
oxygen * co2
## [1] 6085575
This step is strictly speaking not necessary as, if readed in als character, all numbers are properly formtted. Only if readed in as numbers (which is the default if
read.table
is not told otherwise) we see unequal length. However, we keep this code to play it safe.↩︎Technically it also takes a third parameter
type
, indicating whether we filter for majority or minority.↩︎