Project Euler Lab - Problem 334

#334 - Spilling the Beans

● AdvancedOfficial difficulty: 56%Two-player gamesTier C - reduced scale in browser; full scale in notebookNot viewed
↖ Euler Lab

In Plato's heaven, there exist an infinite number of bowls in a straight line.
Each bowl either contains some or none of a finite number of beans.
A child plays a game, which allows only one kind of move: removing two beans from any bowl, and putting one in each of the two adjacent bowls.
The game ends when each bowl contains either one or no beans.

For example, consider two adjacent bowls containing \(2\) and \(3\) beans respectively, all other bowls being empty. The following eight moves will finish the game:

0334_beans.gif

You are given the following sequences:

\(\def\htmltext#1{\style{font-family:inherit;}{\text{#1}}}\) \( \begin{align} \qquad t_0 &= 123456,\cr \qquad t_i &= \cases{ \;\;\frac{t_{i-1}}{2},&\)\htmltext{if }t_{i-1}\htmltext{ is even}\(\cr \left\lfloor\frac{t_{i-1}}{2}\right\rfloor\oplus 926252,&\)\htmltext{if }t_{i-1}\htmltext{ is odd}\(\cr}\cr &\qquad\htmltext{where }\lfloor x\rfloor\htmltext{ is the floor function }\cr &\qquad\!\htmltext{and }\oplus\htmltext{is the bitwise XOR operator.}\cr \qquad b_i &= (t_i\bmod2^{11}) + 1.\cr \end{align} \)

The first two terms of the last sequence are \(b_1 = 289\) and \(b_2 = 145\).
If we start with \(b_1\) and \(b_2\) beans in two adjacent bowls, \(3419100\) moves would be required to finish the game.

Consider now \(1500\) adjacent bowls containing \(b_1, b_2, \ldots, b_{1500}\) beans respectively, all other bowls being empty. Find how many moves it takes before the game ends.

This problem is taken from Project Euler, Problem 334.
Problem text © Project Euler, licensed under CC BY-NC-SA 4.0. Original: projecteuler.net/problem=334. Published Saturday, 23rd April 2011, 04:00 pm. Solved by 571 members at time of mirroring.

Why this is useful

Algorithmic Development. Graph/state-space search transfers to routing, dependency resolution, and execution-path optimisation (Phases 16, 17).

We classify relevance honestly - not every Euler problem is a trading application.

Learning mode

Pick how much scaffolding you want. Your choice is remembered per problem.

Scratchpad

Mathematical notes, formulas, pseudocode, hypotheses, complexity notes. Saved automatically with your progress.

Python workbench

Tier C - reduced scale in browser; full scale in notebook
Browser runs a reduced, clearly-labelled educational scale; the original scale is provided in a local notebook.

Real Python (Pyodide) in a sandboxed Web Worker - no network, no filesystem, no DOM access. Ctrl/Cmd+Enter runs. Escape leaves the editor. Stop terminates the worker.

Python runtime not loaded (it boots on first run - a one-time local load).

Check your answer

Answers are checked against a salted hash held in a separate file - not printed in this page. This prevents accidental spoilers; it is not cryptographic protection (see the build notes).

Progressive hints

Confidence

Low confidence schedules this problem for spaced review, even if you solved it.

Reference solution

Spoiler
The complete original explanation (interpretation, naive approach, insight, proof, complexity, Python implementation, tests, common mistakes, alternatives) is hidden and lazy-loaded. Reveal it only after a meaningful attempt - the struggle is where the learning happens.