This is a follow-up on a previously asked question: Random Ants problem
Quoting the problem:
500 ants are randomly put on a 1-foot string (independent uniform distribution for each ant between 0 and 1). Each ant randomly moves toward on end of the string (equal probability to the left or the right) at constant speed of 1 foot/minute until it falls of a t one end of the string. Also assume that the size of the ant is infinitely small. When two ants collide head-on, they both immediately change directions and keep on moving at 1 foot/min. What is the expected time for all ants to fall off the string?
My question: Does the answer change if each ant moves to the left with a probability $p$, and to the right with a probability $1-p$?
Going by the approach of this answer, the expected sizes of sets $S_l$ and $S_r$ will change, but this won't affect the maximum of $S_l\cup S_r$. So, I think that the answer won't change. Is this correct?
And if this is indeed correct, it would be nice to know any alternative ways to deduce the result.