Editorial for COCI '08 Contest 1 #1 Skocimis


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.

Suppose kangaroo A is farther from B than B is from C. Then the three kangaroos will play longest if C jumps first, onto position A+1 or B1. They can repeat this until they are standing next to each other.

The total number of jumps will be BA1 or CB1, depending on which pair of kangaroos was initially farther. The solution is the value of the expression max{BA,CB}1.


Comments

There are no comments at the moment.