mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-13 03:03:46 +00:00
chore(*): Move old solutions into a separate folder
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<RootNamespace>_03</RootNamespace>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,17 @@
|
||||
public class BinaryData
|
||||
{
|
||||
public int Digit0 { get; set; }
|
||||
public int Digit1 { get; set; }
|
||||
public int Digit2 { get; set; }
|
||||
public int Digit3 { get; set; }
|
||||
public int Digit4 { get; set; }
|
||||
public int Digit5 { get; set; }
|
||||
public int Digit6 { get; set; }
|
||||
public int Digit7 { get; set; }
|
||||
public int Digit8 { get; set; }
|
||||
public int Digit9 { get; set; }
|
||||
public int Digit10 { get; set; }
|
||||
public int Digit11 { get; set; }
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,179 @@
|
||||
namespace Day03
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
//Part1();
|
||||
Part2();
|
||||
}
|
||||
|
||||
|
||||
static void Part1()
|
||||
{
|
||||
// Part 1
|
||||
string[] lines = File.ReadAllLines("input.txt");
|
||||
List<BinaryData> binaryDataList = new List<BinaryData>();
|
||||
|
||||
foreach (string line in lines)
|
||||
{
|
||||
BinaryData binaryData = new BinaryData()
|
||||
{
|
||||
Digit0 = Int32.Parse(line[0].ToString()),
|
||||
Digit1 = Int32.Parse(line[1].ToString()),
|
||||
Digit2 = Int32.Parse(line[2].ToString()),
|
||||
Digit3 = Int32.Parse(line[3].ToString()),
|
||||
Digit4 = Int32.Parse(line[4].ToString()),
|
||||
Digit5 = Int32.Parse(line[5].ToString()),
|
||||
Digit6 = Int32.Parse(line[6].ToString()),
|
||||
Digit7 = Int32.Parse(line[7].ToString()),
|
||||
Digit8 = Int32.Parse(line[8].ToString()),
|
||||
Digit9 = Int32.Parse(line[9].ToString()),
|
||||
Digit10 = Int32.Parse(line[10].ToString()),
|
||||
Digit11 = Int32.Parse(line[11].ToString()),
|
||||
};
|
||||
|
||||
binaryDataList.Add(binaryData);
|
||||
}
|
||||
|
||||
// for first digit find most common, 2nd digit most common, etc to get the gamma rate
|
||||
int mostOccurred0 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit0).ToList());
|
||||
int mostOccurred1 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit1).ToList());
|
||||
int mostOccurred2 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit2).ToList());
|
||||
int mostOccurred3 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit3).ToList());
|
||||
int mostOccurred4 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit4).ToList());
|
||||
int mostOccurred5 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit5).ToList());
|
||||
int mostOccurred6 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit6).ToList());
|
||||
int mostOccurred7 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit7).ToList());
|
||||
int mostOccurred8 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit8).ToList());
|
||||
int mostOccurred9 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit9).ToList());
|
||||
int mostOccurred10 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit10).ToList());
|
||||
int mostOccurred11 = GetMostOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit11).ToList());
|
||||
|
||||
string mostOccurred = "" + mostOccurred0 + mostOccurred1 + mostOccurred2 + mostOccurred3 + mostOccurred4 + mostOccurred5 + mostOccurred6 + mostOccurred7 + mostOccurred8 + mostOccurred9 + mostOccurred10 + mostOccurred11;
|
||||
|
||||
// for first digit find least common, 2nd digit least common, etc to get the epsilon rate
|
||||
int leastOccurred0 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit0).ToList());
|
||||
int leastOccurred1 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit1).ToList());
|
||||
int leastOccurred2 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit2).ToList());
|
||||
int leastOccurred3 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit3).ToList());
|
||||
int leastOccurred4 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit4).ToList());
|
||||
int leastOccurred5 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit5).ToList());
|
||||
int leastOccurred6 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit6).ToList());
|
||||
int leastOccurred7 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit7).ToList());
|
||||
int leastOccurred8 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit8).ToList());
|
||||
int leastOccurred9 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit9).ToList());
|
||||
int leastOccurred10 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit10).ToList());
|
||||
int leastOccurred11 = GetLeastOccurredCharacterAtPosition(binaryDataList.Select(x => x.Digit11).ToList());
|
||||
|
||||
string leastOccurred = "" + leastOccurred0 + leastOccurred1 + leastOccurred2 + leastOccurred3 + leastOccurred4 + leastOccurred5 + leastOccurred6 + leastOccurred7 + leastOccurred8 + leastOccurred9 + leastOccurred10 + leastOccurred11;
|
||||
|
||||
Console.WriteLine($"MO: {mostOccurred} LO: {leastOccurred}");
|
||||
|
||||
string gammaRate = string.Join("", mostOccurred);
|
||||
int gammaRateDenary = Convert.ToInt32(gammaRate, 2);
|
||||
string epsilonRate = string.Join("", leastOccurred);
|
||||
int epsilonRateDenary = Convert.ToInt32(epsilonRate, 2);
|
||||
|
||||
// multiply gamma rate by epislon rate to get power consumption
|
||||
int powerConsumption = gammaRateDenary * epsilonRateDenary;
|
||||
|
||||
Console.WriteLine($"Gamma rate: {gammaRate} Epsilon rate: {epsilonRate} Power consumption: {powerConsumption}");
|
||||
}
|
||||
|
||||
static void Part2()
|
||||
{
|
||||
string[] lines = File.ReadAllLines("input.txt");
|
||||
List<string> linesForOxygen = lines.ToList();
|
||||
List<string> linesForCo2 = lines.ToList();
|
||||
|
||||
for (int i = 0; i < lines[0].Length; i++)
|
||||
{
|
||||
if (linesForOxygen.Count > 1)
|
||||
{
|
||||
int mostCommon = GetMostOccurredCharacterAtPositionWithEqualHandling(linesForOxygen.Select(x => Int32.Parse(x[i].ToString())).ToList());
|
||||
linesForOxygen = linesForOxygen.Where(x => x[i] == mostCommon.ToString()[0]).ToList();
|
||||
}
|
||||
|
||||
if (linesForCo2.Count > 1)
|
||||
{
|
||||
int leastCommon = GetLeastOccurredCharacterAtPositionWithEqualHandling(linesForCo2.Select(x => Int32.Parse(x[i].ToString())).ToList());
|
||||
linesForCo2 = linesForCo2.Where(x => x[i] == leastCommon.ToString()[0]).ToList();
|
||||
}
|
||||
}
|
||||
|
||||
Console.WriteLine($"Oxygen: {linesForOxygen[0]} CO2: {linesForCo2[0]}");
|
||||
|
||||
int oxygenDenary = Convert.ToInt32(linesForOxygen[0], 2);
|
||||
int co2Denary = Convert.ToInt32(linesForCo2[0], 2);
|
||||
|
||||
// life support rating = oxygen generator rating * co2 scrubber rating
|
||||
int lifeSupportRating = oxygenDenary * co2Denary;
|
||||
|
||||
Console.WriteLine($"Oxygen: {oxygenDenary} CO2: {co2Denary} Life support rating: {lifeSupportRating}");
|
||||
}
|
||||
|
||||
|
||||
public static int GetMostOccurredCharacterAtPositionWithEqualHandling(List<int> list)
|
||||
{
|
||||
var count0 = list.Where(x => x == 0).Count();
|
||||
var count1 = list.Where(x => x == 1).Count();
|
||||
|
||||
if (count0 == count1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (count0 > count1)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static int GetLeastOccurredCharacterAtPositionWithEqualHandling(List<int> list)
|
||||
{
|
||||
var count0 = list.Where(x => x == 0).Count();
|
||||
var count1 = list.Where(x => x == 1).Count();
|
||||
|
||||
if (count0 == count1)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (count0 > count1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static int GetMostOccurredCharacterAtPosition(List<int> list)
|
||||
{
|
||||
return list
|
||||
.GroupBy(x => x)
|
||||
.OrderByDescending(group => group.Count())
|
||||
.Select(x => x.Key)
|
||||
.First();
|
||||
}
|
||||
|
||||
public static int GetLeastOccurredCharacterAtPosition(List<int> list)
|
||||
{
|
||||
return list
|
||||
.GroupBy(x => x)
|
||||
.OrderBy(group => group.Count())
|
||||
.Select(x => x.Key)
|
||||
.First();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
--- 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.)
|
||||
@@ -0,0 +1,29 @@
|
||||
--- 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.)
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user