The Bamboo Garden Trimming Problem - Fun CS Theory
Written by Mike James   
Sunday, 18 September 2022

Today is World Bamboo Day which, since 2009, is observed on September 18 in order to raise awareness about the conservation of this extremely useful plant. It reminded me of an algoritrhmic puzzle, the Bamboo Garden Trimming (BGT) problem, also known as the Robot Panda problem.

Note: This article previously appeared in May 2020 as The Robot Panda Problem - Fun CS Theory

What is special about this problem it is that it is easy to state and understand and very approachable whether you are an amateur or a serious computer scientist.

pandagarden

The problem, as stated in a paper with the title Cutting Bamboo Down to Size is:

"You just bought a house by a lake. A bamboo garden grows outside the house and obstructs the beautiful view of the lake. To solve the problem, you also bought a robotic panda gardener which, once per day, can instantaneously trim a single bamboo. You have already measured the growth rate of every bamboo in the garden, and you are now faced with programming the gardener with a suitable schedule of bamboos to trim in order to keep the view as clear as possible"

Well, your first thought might be what a useless robotic panda to only be able to cut one bamboo per day - this was certainly Harry Fairhead's first comment but then he is our IoT, hardware and robotics guy! Try explaining to a practical man that pure algorithms are worth studying.

Does it sound any more impressive expressed formally?

The garden contains n bamboos b1,...,bn, where bamboo
bi has a known daily growth rate of hi>0, with h1≥...≥hn
and ∑ hi = 1. Initially, the height of each bamboo is 0, and at the end of each day, the robotic gardener can trim at most one bamboo to instantaneously reset its height to zero. The height of bamboo bi at the end of day d≥1 and before the gardener decides which bamboo to trim is equal to (d−d′)hi, where d′ < d is the last day preceding d in which bi was trimmed (if bi was never trimmed before day d, then d′= 0).

The task is to construct a cutting algorithm that keeps the tallest bamboo as short as possible.This maximum height is called the makespan. Notice the overall growth rate of the garden is 1 and this means that the makespan has to be at least 1 - can you prove this? What is more there are simple cases where it can be arbitrarily close to 2 - what cases?

After these preliminary observations we can start inventing algorithms to produce optimal makespans. This is where things get interesting:

Two natural strategies are Reduce-Max and Reduce-Fastest(x).
Reduce-Max trims the tallest bamboo of the day, while Reduce-Fastest(x) trims the fastest growing bamboo among the ones
that are taller than x. It is known that Reduce-Max and Reduce-Fastest(x) achieve a makespan of O(logn) and 4 for the best choice of x= 2, respectively.

The paper goes on to prove some new upper bounds for both algorithms - read it to find out. It then goes on to examine the time and space demands of the algorithms.

This is a really nice computer science problem that is interesting in its own right and makes a great example to introduce CS thinking. It might even hide an idea for a game within its workings -   Angry Pandas? Let me know if you write it.

If you would like to see an interactive simulation then visit: Bamboo Garden Trimming

pandagarden

  • Mike James is the author of The Programmer’s Guide To Theorywhich sets out to present the fundamental ideas of computer science in an informal and yet informative way.

 

More Information

Cutting Bamboo Down to Size
Davide Bilò, Luciano Gualà, Stefano Leucci, Guido Proietti and Giacomo Scornavacca

Related Articles

New Game Dots And Polygons Is NP Hard

The Grasshopper Problem

LZ Compression And The One-Bit Catastrophe

Best Laid Plans of Lions and Men

Irrational Guards

Cannibal Animal Games     

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

 

Banner


Udacity's New Discovering Ethical AI Course
12/04/2024

Udacity has just launched an hour-long course on Ethical AI. Intended for a wide audience across many industries, it introduces to basic concepts and terms needed to step into the world of Ethica [ ... ]



JetBrains Updates IDEs With AI Code Completion
04/04/2024

JetBrains has launched the first set of updates for 2024 of its JetBrains IDEs. The new versions include full-line code autocompletion powered by locally run AI models.


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Sunday, 18 September 2022 )