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.

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?

share|improve this question
4  
That is called binary search in CS terms. – Thomas Jungblut Feb 21 at 13:34
or Dichotomic search – ring0 Feb 21 at 13:37
Binary search if n is known, otherwise the problem becomes more interesting. – IVlad Feb 21 at 13:39
1  
@IVlad if upper bound is unknown, first doubling from 1(to find a upper bound), then halving(to find the exact number). – Hui Zheng Feb 21 at 13:50

1 Answer

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 floor(log2(n)).

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 2 * floor(log2(k)) + 1, where k is the unknown selected number.

share|improve this answer
yeah! thanks for that! but in the question, it says that, it should be done in Optimal and in Good strategy!! :( – ECR Feb 21 at 13:58
I updated my answer to give the time complexity for both cases. They are proved to be optimal and surely good strategies. – Hui Zheng Feb 21 at 14:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.