Here is a rephrased version of problem $4$ in BMO $2016$ round $2$. I rephrased to make it clearer and shorter.
Given is a triple of digits $(a,b,c)$, where $a$, $b$, $c\in\{0,1,\dots,9\}$. Each turn we guess a triple of digits $(m,n,p)$, and instantly know whether the statement \[a=m~~\textsf{or}~~b=n~~\textsf{or}~~c=p\] is true (however, we are not informed which of the three equalities is (are) true). How many turns will we need at least so that we are guaranteed to determine $(a,b,c)$?
My idea is to first guess $000$, $111$,$\dots$, $999$. If we get a single true, then that is $(a,b,c)$.
If we get $2$ trues, Wlog they're $111$ and $222$. Then all possibilities are
$$(a,b,c)=\begin{array}{ll}
(1,1,2)&(2,1,1)\\
(1,2,1)&(2,1,2)\\
(1,2,2)&(2,1,1).
\end{array}$$
If we get $3$ trues, Wlog they're $111$, $222$ and $333$. Then all possibilities are
$$(a,b,c)=
\begin{array}{lll}
(1,2,3)&(2,3,1)&(3,1,2)\\
(1,3,2)&(3,2,1)&(2,1,3).
\end{array}
$$
I don't know what's the best strategy from here.