4 friends, Aaron, Bobby, Cathy, and Danny, decide to go on an adventure in the famous 'dark forest'. They pack their bags, and take off. A few days later, they are completely lost in the forest. To make matters worse, they are each in a different part of the forest. They know they are each in a different section of the forest, and the forest has 36 sections. The forest has 6 rows and columns of sections, each numbered with a unique number from 1-36. Aaron, Bobby, and Cathy all has sensing and communication devices, but Danny does not. Aaron, Bobby, and Cathy decide to try and save Danny. Each activate their sensing device, and they find that no person is in the same row or column in the forest.
Question: How many squares do Aaron, Bobby and Cathy need to check in order for them to guarantee they know which section of the forest Danny is in?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I feel that a couple points need to be clarified here. First, how do the sensors work? Are the binary, in that they sense the presence of at least one person in a row or column? Or do they actually count the number of people in the row and/or column? Do we know if a person sensed is in a row or in a column? Without knowing these things, it's hard to know a precise answer.
Also, must the squares be tested simultaneously, or can we use a sequential approach?
In any case, I reduced the problem to that of searching a 3x3 grid, with all three people searching simultaneously, and with the sensors not functioning in a binary fashion, but rather being able to differentiate between multiple signals.
If this is the case, I put Aaron at position (1,1), Bobby at position (1,2), and Cathy at position (3,3). If Danny is in any of these three squares, they see him immediately.
If Danny is in position (1,3), all three detect him. If he's in (2,1) or (2,2) or (2,3) only Aaron (or, respectively, Bobby or Cathy) will detect him. If Danny is in position (3,1) Aaron and Cathy detect him, but Bobby does not. If Danny is in position (3,2), Bobby and Cathy detect him, but Aaron does not.