Editorial for Yet Another Contest 2 P1 - Betting


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Author: Josh

Subtask 1

Let Mike bet X dollars that the Geese will win and Y dollars that the Kangaroos will win. Then, he will bet a total of X+Y dollars, and in the worst case scenario, he will win min(X×BA,Y×DC) dollars.

We can brute force over all possible values of X and Y, and check if there exists a combination such that X+Y<min(X×BA,Y×DC).

Time complexity: O(1002×T)

Subtask 2

For Mike to guarantee a profit, we require both X+Y<X×BA and X+Y<Y×DC to be true.

Rearranging the first equation, we see that Y<X×(BA1).

Rearranging the second equation, we see that X<Y×(DC1).

Combining these equations, we obtain Y<(BA1)×(DC1)×Y. Dividing both sides by Y, we obtain 1<(BA1)×(DC1). Therefore, if a solution exists, then (BA1)×(DC1)>1 must be true. To avoid precision errors, we can instead check whether (BA)×(DC)>A×C is true.

It turns out that if this inequality is true, then a solution must exist. For example, we can set X=1 and Y to any value greater than 1DC1 and less than (BA1).

Hence, we can solve each scenario in O(1) time.

Time complexity: O(T)


Comments


  • 0
    ev_code  commented on Oct. 26, 2024, 4:51 p.m.

    Wait, I'm confused. If Y<X×((B/A)1) and X<Y×((D/C)1), then how can we assume that Y<((B/A)1)×((D/C)1)×Y?

    We know that X is SMALLER than Y×((D/C)1), so why do we suddenly assume they are equal in the third equation?


    • 0
      Dequan_Kong  commented 81 days ago

      From the equation X<Y(DC1), we have X(BA1)<Y(DC1)(BA1).

      Since Y<X(BA1), we see that Y<Y(DC1)(BA1).