Consider the numerical 20 questions game. In this game, player 1 thinks of a number in the range 1 to n. Player 2 has to figure out this number by asking the fewest number of true/false questions.Assume that nobody cheats. i. What is an optimal strategy if n in known? ii. What is a good strategy is n is not known?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Please refer to this wiki: binary search for number guessing game. If n is known, use binary search algorithm to find it, so asked questions is not more than If n is unknown, you can first find an upper bound by repeated doubling, then apply binary search. It's clear that asked questions is not more than |
||||
nis known, otherwise the problem becomes more interesting. – IVlad Feb 21 at 13:39