Welcome to the fictional game of "color-tag"; the not-so-fast-paced cousin of paintball Where marking your opponent is all that counts!
If $A$ marks $B$ with his/her color, then $B$ will be permanently marked with $A$'s color, but at the same time all other people marked with $B$'s color will instantly be permanently marked with $A$'s color as well.
The first one to have marked everyone wins, and the game is finished!
$m<x$ where $m = 16$, and the number of players, $x$, is put in a room and assigned an unique color.
With every hour that progress, all the players have a probability of $1 - \frac{m}{x}$ of successfully marking another player. There is no limit as to how many times a player marks another player.
In the event that $A$ marks another player, the player, that is being marked, $B$, is chosen at random; Although players cannot mark themselves.
Now, I would like to know what the optimal number of players for the game having the highest probability of being the fastest.
That is, how many players are needed for the game to have the highest probability of finishing the fastest?
Sounds simple enough, right?
It turns out that it sounds simpler than it is; At least in my ears.
I've tried to warp my head around it, but I fail to find a viable approach.
I started out by calculating $(1 - \frac{16}{32} * \frac{1}{32})^{32}$, thinking that $(1 - \frac{m}{x} * \frac{1}{x})^x$ was the way to go about calculating the fastest possible game with respect to the number of players. I soon realized that there was no way that was going to give me anything near correct results, so I came up with something along the lines of $\sum_{n=0}^{x-1} ((1 - \frac{m}{x}) * \frac{x-n}{x})^n$, which I hoped would get me somewhere; But all it did was feed me an absurdly small number and make me realize that I've never been faced with a problem like this, and that I have no idea of how to solve it.
Right now, I'm not even considering that I must find the cases with the highest probabilities of success, then cross check to see which is he fastest; Which I do think is paramount in this problem, alas I know of no way to approach this.
Any input (especially tag additions) is greatly appreciated!
EDIT 1:
Just to make sure there is no confusion: If a player $A$ and another player $B$ both get to mark an opponent (opponents being all the other players) within a hour, then there is a chance, and it is allowed that $A$ marks $B$, and $B$ marks $A$.
Marking another player happens instantaneously and simultaneously.