Then that's what you should have asked in the first place! We ask you to tell us what you have tried, and that can include trying to understand their answer. That gives us at least some sense of where you are.
Since I don't even understand the problem, we can try to use this explanation (which, like most "official solutions", is very sketchy) to try to figure it out piece by piece.
Here is the problem, with extraneous nonsense removed:
PT and D are competing.
Both players spin a wheel which chooses an integer from 1 to 50 uniformly at random, and this number becomes their score.
D then flips a weighted coin that lands heads with probability 3/5. If he flips heads, he adds 1 to his score.
A player wins the game if their score is higher than the other player’s score.
The probability D wins is ...
Now go through the solution:
If the coin has probability q of landing heads, the probability of D winning is (1 − P(tie))/2 + qP(tie), where P(tie) = 1/50 is the probability that both players spin the same number on the wheel. This is 251/500, so the answer is 751.
We are told that the probability of heads is 3/5; they call that q, presumably to help focus on ideas rather than numbers.
Then there is something about a tie: P(tie) = 1/50 is the probability that both players spin the same number on the wheel. This tells us that each player spins the wheel, and gets that amount as an initial score. That clarifies one of my questions, which was due to bad grammar (combined with my pickiness). So here is a better version of the problem:
PT and D each spin a wheel which chooses an integer from 1 to 50 uniformly at random, and this number becomes their score.
D then flips a weighted coin that lands heads with probability 3/5. If he flips heads, he adds 1 to his score.
A player wins the game if their score is higher than the other player’s score.
The probability D wins is ...
Continuing with the solution, why is P(tie) = 1/50? That would be because whatever P spins, D has a 1/50 chance of spinning that same number. So the solution is tracking so far.
Now we're told that the probability of D winning is (1 − P(tie))/2 + qP(tie). The addition comes from there being two ways D can win: either by spinning the higher number in the first place, or by flipping the coin. Now, if D's number had been 1 less than PT's, then flipping heads would create a tie, so it looks like D only flips the coin in the case of a tie, as JeffM has suggested. Here's a new version of the problem:
PT and D each spin a wheel which chooses an integer from 1 to 50 uniformly at random, and this number becomes their score.
In the case of a tie, D then flips a weighted coin that lands heads with probability 3/5. If he flips heads, he adds 1 to his score.
A player wins the game if their score is higher than the other player’s score.
The probability D wins is ...
(That phrase alone would have made a lot of things clear!)
Now I'll let you take over. Do you see why (1 − P(tie))/2 is the probability of winning the initial toss? (I would have done it very differently, so if you prefer a different way, you're in good company. Just check that it gives the same answer.)
Then, do you see why qP(tie) gives the probability of winning in the case of a tie?