skip to content

AOC 22 Day 1 🍞

Advent of Code 2022 Day 1 - Calorie Counting - We Need to help Elves in finding the Elf that has highest number of calories

Problem🤔

Calorie Counting: The jungle must be too overgrown and difficult to navigate in vehicles or access from the air; the Elves’ expedition traditionally goes on foot. As your boats approach land, the Elves begin taking inventory of their supplies. One important consideration is food - in particular, the number of Calories each Elf is carrying.

The Elves take turns writing down the number of Calories contained by the various meals, snacks, rations, etc. that they’ve brought with them, one item per line. Each Elf separates their own inventory from the previous Elf’s inventory (if any) by a blank line.

Sample Data

For example, suppose the Elves finish writing their items’ Calories and end up with the following list:

1000
2000
3000

4000

5000
6000

7000
8000
9000

10000
1000
2000
3000

4000

5000
6000

7000
8000
9000

10000

This list represents the Calories of the food carried by five Elves:

  • The first Elf is carrying food with 1000, 2000, and 3000 Calories, a total of 6000 Calories.
  • The second Elf is carrying one food item with 4000 Calories.
  • The third Elf is carrying food with 5000 and 6000 Calories, a total of 11000 Calories.
  • The fourth Elf is carrying food with 7000, 8000, and 9000 Calories, a total of 24000 Calories.
  • The fifth Elf is carrying one food item with 10000 Calories.

Part 1

In case the Elves get hungry and need extra snacks, they need to know which Elf to ask: they’d like to know how many Calories are being carried by the Elf carrying the most Calories. In the example above, this is 24000 (carried by the fourth Elf).

Find the Elf carrying the most Calories. How many total Calories is that Elf carrying?

Solution 1💡

Lets just start with importing the string data, then we will split the strings on 2 new lines \n\n separating the data to depict each item as an elf.

Now we can iterate over the elves, split again on a new line \n and cast it to a number using Unary Plus +'5000'

With the list of numbers we can use reduce to get the sum of all the values.

Finally we can sort all the sums and get last element using at.

import { input } from './1a-input.ts';
const elves = input.split('\n\n');
const sums = elves.map((calStr) => {
  const calListNum = calStr.split('\n').map((x) => +x);
  const sum = calListNum.reduce((ttl, x) => ttl + x, 0);
  return sum;
});
 
const sorted = sums.sort((a, b) => a - b);
console.log(sorted.at(-1));
import { input } from './1a-input.ts';
const elves = input.split('\n\n');
const sums = elves.map((calStr) => {
  const calListNum = calStr.split('\n').map((x) => +x);
  const sum = calListNum.reduce((ttl, x) => ttl + x, 0);
  return sum;
});
 
const sorted = sums.sort((a, b) => a - b);
console.log(sorted.at(-1));

Part 2

By the time you calculate the answer to the Elves’ question, they’ve already realized that the Elf carrying the most Calories of food might eventually run out of snacks.

To avoid this unacceptable situation, the Elves would instead like to know the total Calories carried by the top three Elves carrying the most Calories. That way, even if one of those Elves runs out of snacks, they still have two backups.

In the example above, the top three Elves are the fourth Elf (with 24000 Calories), then the third Elf (with 11000 Calories), then the fifth Elf (with 10000 Calories). The sum of the Calories carried by these three elves is 45000.

Find the top three Elves carrying the most Calories. How many Calories are those Elves carrying in total?

Solution 2💡

Now that in part 1 we got sorted list, we can just do a sum on last three items, we can do this either by splice and then reduce but I went with an more un-scalable approach because it was quicker🤷.

const top1 = sorted.at(-1) ?? 0;
const top2 = sorted.at(-2) ?? 0;
const top3 = sorted.at(-3) ?? 0;
console.log(top1 + top2 + top3);
const top1 = sorted.at(-1) ?? 0;
const top2 = sorted.at(-2) ?? 0;
const top3 = sorted.at(-3) ?? 0;
console.log(top1 + top2 + top3);