-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday3.r
193 lines (167 loc) · 8.18 KB
/
day3.r
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# --- 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.)
#
# Your puzzle answer was 4147524.
#
# --- 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 or 1) in the current bit position, and keep only numbers with that bit in that position. If 0 and 1 are equally common, keep values with a 1 in the position being considered.
# To find CO2 scrubber rating, determine the least common value (0 or 1) in the current bit position, and keep only numbers with that bit in that position. If 0 and 1 are equally common, keep values with a 0 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) than 0 bits (5), so keep only the 7 numbers with a 1 in the first position: 11110, 10110, 10111, 10101, 11100, 10000, and 11001.
# Then, consider the second bit of the 7 remaining numbers: there are more 0 bits (4) than 1 bits (3), so keep only the 4 numbers with a 0 in the second position: 10110, 10111, 10101, and 10000.
# In the third position, three of the four numbers have a 1, so keep those three: 10110, 10111, and 10101.
# In the fourth position, two of the three numbers have a 1, so keep those two: 10110 and 10111.
# In the fifth position, there are an equal number of 0 bits and 1 bits (one each). So, to find the oxygen generator rating, keep the number with a 1 in that position: 10111.
# As there is only one number left, stop; the oxygen generator rating is 10111, or 23 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) than 1 bits (7), so keep only the 5 numbers with a 0 in the first position: 00100, 01111, 00111, 00010, and 01010.
# Then, consider the second bit of the 5 remaining numbers: there are fewer 1 bits (2) than 0 bits (3), so keep only the 2 numbers with a 1 in the second position: 01111 and 01010.
# In the third position, there are an equal number of 0 bits and 1 bits (one each). So, to find the CO2 scrubber rating, keep the number with a 0 in that position: 01010.
# As there is only one number left, stop; the CO2 scrubber rating is 01010, or 10 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.)
#
# Your puzzle answer was 3570354.
library(tidyverse)
library(readr)
library (plyr)
# d3 - convert binary commands to get power consumption
d3 <-
read_delim("Documents/personal_repos/advent_of_code_2021/data/day3_AoC.txt",
delim = ",",
col_names = F,
col_types =
cols(
X1 = col_character()
))
split_out_string <-
function(x){
x <- unlist(strsplit(x, split = ""))
return(x)
}
top_value_freq <-
function(x){
x <-
sort(table(x), decreasing = TRUE)
if(x[1] == x[2] & length(x) > 1){
print(x)
x <- x[names(x)=="1"]
} else x <- x[1]
x <- names(x)
return(x)
}
low_value_freq <-
function(x){
x <-
sort(table(x), decreasing = FALSE)
if(x[1] == x[2] & length(x) > 1){
print(x)
x <- x[names(x)=="0"]
} else x <- x[1]
x <- names(x)
return(x)
}
d3_split <-
sapply(d3[, 1],
function(x){
split_out_string(x)
}
)
d3_split <-
as.data.frame(matrix(d3_split,
nrow=nrow(d3),
byrow=TRUE)) %>%
as.data.frame()
d3_gamma_bin <-
apply(d3_split, 2, top_value_freq) %>%
paste(., collapse = '')
d3_epsilon_bin <-
apply(d3_split, 2, low_value_freq) %>%
paste(., collapse = '')
# d3_gamma converts to 1836
# d3_epsilon converts to 2259
# https://www.rapidtables.com/convert/number/binary-to-decimal.html
d3_gamma <- 1836
d3_epsilon <- 2259
d3_gamma * d3_epsilon
# d3 part 2 - verify the life support rating
d3_gamma_bin_split <-
unlist(strsplit(as.character(d3_gamma_bin), split = ""))
d3_epsilon_bin_split <-
unlist(strsplit(as.character(d3_epsilon_bin), split = ""))
gamma_chek <- d3_gamma_bin_split
d3_split_o2 <-d3_split
for(i in 1:ncol(d3_split)){
if (nrow(d3_split_o2) == 1) {
break
}
d3_split_o2 <-
d3_split_o2[d3_split_o2[,i] == gamma_chek[i], ]
gamma_chek <-
apply(d3_split_o2, 2, top_value_freq)
print(nrow(d3_split_o2))
}
d3_split_o2 <- apply(d3_split_o2, 2, max)
d3_split_o2 <- paste(d3_split_o2, collapse = '')
# converts to 1427
epsilon_chek <- d3_epsilon_bin_split
d3_split_co2 <- d3_split
for(i in 1:ncol(d3_split)){
if (nrow(d3_split_co2) == 1) {
break
}
d3_split_co2 <-
d3_split_co2[d3_split_co2[,i] == epsilon_chek[i], ]
epsilon_chek <-
apply(d3_split_co2, 2, low_value_freq)
print(nrow(d3_split_co2))
if (nrow(d3_split_co2[d3_split_co2[,i+1] == epsilon_chek[i+1], ]) < 1) {
break
}
}
d3_split_co2 <- apply(d3_split_co2, 2, min)
d3_split_co2 <- paste(d3_split_co2, collapse = '')
# converts to 2502
2502 * 1427