ben
/
aoc
1
0
Fork 0
aoc/AOC2019/Day01.cs

29 lines
668 B
C#

namespace AOC2019;
public sealed class Day01() : Day(2019, 1, "The Tyranny of the Rocket Equation")
{
private IEnumerable<int>? _masses;
public override void ProcessInput() =>
_masses = Input.Select(int.Parse);
private static int FuelCost(int weight) => weight / 3 - 2;
private static int FullCost(int cost)
{
int total = 0, newCost, tmp = cost;
while ((newCost = FuelCost(tmp)) >= 0)
{
total += newCost;
tmp = newCost;
}
return total;
}
public override object Part1() => _masses!.Sum(FuelCost);
public override object Part2() => _masses!.Sum(FullCost);
}