In a Parallel Universe, Alibaba is the leader of Forty Thieves. One day, the thieves found 100 golden coins. The Forty Thieves wanted 80 golden coins, but the greedy Alibaba just want to own all the treasure. So he said to the thieves that:
I will divide the treasure to 2 groups with a positive integer number of coins.
Then, I choose a random group and divide it into 2 other groups with a positive integer number of coins.
I will continue this until there are 100 groups in total.
At any time of this process, If you can find 40 groups with a total of exactly 80 coins, then you can take this.
But if you cannot, you get nothing.
The thieves definitely can take 40 groups like that after a-th divide times whatever how Alibaba divide. What is the smallest of the value of a?
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.
The topic is missing some helpful premises including each group must have 1 coin .
The range of a is from 0 to 99.
When a is 39, there're 40 groups which having the sum is 100 coins.
When a is 99, there're 100 groups which having the sum is 100 coins, more importantly, each group has only 1 coin.
We can notice that whatever how Alibaba divide, the group which has only 1 coin will definitely appear when a is 50 and the total number of group is 51.
And when a is 59, there're 60 groups in total which at least have 20 groups with only 1 coin. This condition is exactly what we are looking forward to, with other 40 groups which having the sum is 80 coins.
So the smallest value of a is 59.