Day 22: Monkey Market

2024-12-22

As you're all teleported deep into the jungle, a monkey steals The Historians' device! You'll need get it back while The Historians are looking for the Chief.

The monkey that stole the device seems willing to trade it, but only in exchange for an absurd number of bananas. Your only option is to buy bananas on the Monkey Exchange Market.

You aren't sure how the Monkey Exchange Market works, but one of The Historians senses trouble and comes over to help. Apparently, they've been studying these monkeys for a while and have deciphered their secrets.

Today, the Market is full of monkeys buying good hiding spots. Fortunately, because of the time you recently spent in this jungle, you know lots of good hiding spots you can sell! If you sell enough hiding spots, you should be able to get enough bananas to buy the device back.

On the Market, the buyers seem to use random prices, but their prices are actually only pseudorandom! If you know the secret of how they pick their prices, you can wait for the perfect time to sell.

The part about secrets is literal, the Historian explains. Each buyer produces a pseudorandom sequence of secret numbers where each secret is derived from the previous.

In particular, each buyer's secret number evolves into the next secret number in the sequence via the following process:

  • Calculate the result of multiplying the secret number by 64. Then, mix this result into the secret number. Finally, prune the secret number.
  • Calculate the result of dividing the secret number by 32. Round the result down to the nearest integer. Then, mix this result into the secret number. Finally, prune the secret number.
  • Calculate the result of multiplying the secret number by 2048. Then, mix this result into the secret number. Finally, prune the secret number.

Each step of the above process involves mixing and pruning:

  • To mix a value into the secret number, calculate the bitwise XOR of the given value and the secret number. Then, the secret number becomes the result of that operation. (If the secret number is 42 and you were to mix15 into the secret number, the secret number would become 37.)
  • To prune the secret number, calculate the value of the secret number modulo 16777216. Then, the secret number becomes the result of that operation. (If the secret number is 100000000 and you were to prune the secret number, the secret number would become 16113920.)

After this process completes, the buyer is left with the next secret number in the sequence. The buyer can repeat this process as many times as necessary to produce more secret numbers.

So, if a buyer had a secret number of 123, that buyer's next ten secret numbers would be:

1
2
3
4
5
6
7
8
9
10
15887950 16495136 527345 704524 1553684 12683156 11100544 12249484 7753432 5908254

Each buyer uses their own secret number when choosing their price, so it's important to be able to predict the sequence of secret numbers for each buyer. Fortunately, the Historian's research has uncovered the initial secret number of each buyer (your puzzle input). For example:

1
2
3
4
1 10 100 2024

This list describes the initial secret number of four different secret-hiding-spot-buyers on the Monkey Exchange Market. If you can simulate secret numbers from each buyer, you'll be able to predict all of their future prices.

In a single day, buyers each have time to generate 2000 new secret numbers. In this example, for each buyer, their initial secret number and the 2000th new secret number they would generate are:

1
2
3
4
1: 8685429 10: 4700978 100: 15273692 2024: 8667524

Adding up the 2000th new secret number for each buyer produces 37327623.

For each buyer, simulate the creation of 2000 new secret numbers. What is the sum of the 2000th secret number generated by each buyer?

Progress: 0 / 2452
Total: 0

Just step through the values, apply each step to the secret for N times, and keep a running total.

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
function mix(a: number, b: number) { return a ^ b; } function prune(a: number) { return modulo(a, 16777216); } function step1(value: number) { return prune(mix(value * 64, value)); } function step2(value: number) { return prune(mix(Math.floor(value / 32), value)); } function step3(value: number) { return prune(mix(value * 2048, value)); } for await (const value of values) { let secret = value; for (let i = 0; i < 2000; i += 1) { secret = step1(secret); secret = step2(secret); secret = step3(secret); } runningTotal += secret; }

Of course, the secret numbers aren't the prices each buyer is offering! That would be ridiculous. Instead, the prices the buyer offers are just the ones digit of each of their secret numbers.

So, if a buyer starts with a secret number of 123, that buyer's first ten prices would be:

1
2
3
4
5
6
7
8
9
10
3 (from 123) 0 (from 15887950) 6 (from 16495136) 5 (etc.) 4 4 6 4 4 2

This price is the number of bananas that buyer is offering in exchange for your information about a new hiding spot. However, you still don't speak monkey, so you can't negotiate with the buyers directly. The Historian speaks a little, but not enough to negotiate; instead, he can ask another monkey to negotiate on your behalf.

Unfortunately, the monkey only knows how to decide when to sell by looking at the changes in price. Specifically, the monkey will only look for a specific sequence of four consecutive changes in price, then immediately sell when it sees that sequence.

So, if a buyer starts with a secret number of 123, that buyer's first ten secret numbers, prices, and the associated changes would be:

1
2
3
4
5
6
7
8
9
10
123: 3 15887950: 0 (-3) 16495136: 6 (6) 527345: 5 (-1) 704524: 4 (-1) 1553684: 4 (0) 12683156: 6 (2) 11100544: 4 (-2) 12249484: 4 (0) 7753432: 2 (-2)

Note that the first price has no associated change because there was no previous price to compare it with.

In this short example, within just these first few prices, the highest price will be 6, so it would be nice to give the monkey instructions that would make it sell at that time. The first 6 occurs after only two changes, so there's no way to instruct the monkey to sell then, but the second 6 occurs after the changes -1,-1,0,2. So, if you gave the monkey that sequence of changes, it would wait until the first time it sees that sequence and then immediately sell your hiding spot information at the current price, winning you 6 bananas.

Each buyer only wants to buy one hiding spot, so after the hiding spot is sold, the monkey will move on to the next buyer. If the monkey never hears that sequence of price changes from a buyer, the monkey will never sell, and will instead just move on to the next buyer.

Worse, you can only give the monkey a single sequence of four price changes to look for. You can't change the sequence between buyers.

You're going to need as many bananas as possible, so you'll need to determine which sequence of four price changes will cause the monkey to get you the most bananas overall. Each buyer is going to generate 2000 secret numbers after their initial secret number, so, for each buyer, you'll have 2000 price changes in which your sequence can occur.

Suppose the initial secret number of each buyer is:

1
2
3
4
1 2 3 2024

There are many sequences of four price changes you could tell the monkey, but for these four buyers, the sequence that will get you the most bananas is -2,1,-1,3. Using that sequence, the monkey will make the following sales:

  • For the buyer with an initial secret number of 1, changes -2,1,-1,3 first occur when the price is 7.
  • For the buyer with initial secret 2, changes -2,1,-1,3 first occur when the price is 7.
  • For the buyer with initial secret 3, the change sequence -2,1,-1,3does not occur in the first 2000 changes.
  • For the buyer starting with 2024, changes -2,1,-1,3 first occur when the price is 9.

So, by asking the monkey to sell the first time each buyer's prices go down 2, then up 1, then down 1, then up 3, you would get 23 (7 + 7 + 9) bananas!

Figure out the best sequence to tell the monkey so that by looking for that same sequence of changes in every buyer's future prices, you get the most bananas in total. What is the most bananas you can get?

Progress: 0 / 2452
Max: -Infinity

Same helper functions as Part 1, but also adds:

  • A helper function to extract the one's digit from a number
  • An overall counter to keep track of counts for a given consecutive sequence
  • A counter for each value to keep track of first-seen counts for a given consecutive sequence
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
const numParser = z.coerce.number().lt(10); function onesDigit(value: number) { const strValue = `${value}`; return numParser.parse(strValue.charAt(strValue.length - 1)); } overallCounter = new Counter(); for await (const value of values) { const counter: Record<string, number> = {}; let runningChanges = []; let secret = value; let lastSecret = value; for (let i = 0; i < 2000; i += 1) { secret = step1(secret); secret = step2(secret); secret = step3(secret); const costDiff = onesDigit(secret) - onesDigit(lastSecret); runningChanges.push(costDiff); // Always keep consecutive changes to ≤4 if (runningChanges.length > 4) { runningChanges.shift(); } // Skip the first few changes, we don't have enough values yet if (runningChanges.length === 4) { const key = runningChanges.join(","); // Only set this sequence if it's the first time we've seen it if (counter[key] === undefined) { counter[key] = onesDigit(secret); } } lastSecret = secret; } // Update overall counter Object.entries(counter).map(([key, count]) => { overallCounter!.set(key, overallCounter!.get(key) + count); }); } // Calculate the result const result = Math.max(...overallCounter.values())
Part 1 TimePart 1 RankPart 2 TimePart 2 Rank
00:14:122,11700:46:061,623

Part 1 was incredibly easy, I just took a bit of extra time to test and debug the helper methods

Part 2 was also very easy, but oof were those instructions were challenging to follow. I got stuck up on this:

Each buyer only wants to buy one hiding spot, so after the hiding spot is sold, the monkey will move on to the next buyer. If the monkey never hears that sequence of price changes from a buyer, the monkey will never sell, and will instead just move on to the next buyer.

Worse, you can only give the monkey a single sequence of four price changes to look for. You can't change the sequence between buyers.

I didn't realize that the first matching sequence would be used, instead of the best value for a given sequence, so I spent some time debugging that. But otherwise, this was very easy for a day 22 problem.