There are $n\geq 4$ coins. You are allowed to ask for the weight of any set of coins. What is the worst-case (asymptotic) minimum number of questions after which you can divide the coins into four sets with the property that between any two sets $A,B$, there exists a coin in $B$ that if you remove it, then $A$ weights at least as much as $B$?
Such a division exists by this simple algorithm: for each coin, place it in the pile with the minimum weight so far. By using $n$ questions, we can ask for the weight of each coin individually and get full information. If all coins has weight either $0$ or $1$, then we can do binary search three times to divide the coins into four sets using $O(\log n)$ questions.