Editorial for COCI '10 Contest 1 #6 Žabe
Submitting an official solution before solving the problem yourself is a bannable offence.
We observe that the frog numbered reaches its initial position in a single jump. Similarly, the frog numbered
overshoots its initial position by one (effectively moving one position forward). The algorithm is as follows: we arrange frogs numbered
through
in such a way that their relative order is preserved in the resulting arrangement. In the end, we just let the
frog leap until it reaches the correct position.
This leaves frogs numbered through
, so we need to arrange them. Assume that frogs numbered
are arranged into a correct relative ordering. Now, we try to add the
frog into the relative ordering without violating it. Among the frogs which have already been arranged, we find the frog which should immediately precede the frog numbered
. We denote by
the number of spaces the frog
needs to be moved to be correctly placed.
Let be the greatest common divisor of
and
. Let us see how the frog numbered
leaps if the Frog Regent proclaims its name. After
proclamations, the frog will return to its initial position. After a proclamation, the value
remains unchanged. Thus, if
, we can put the frog to the desired position by repeatedly proclaiming
.
In case , we should change that number so that
by gradually decreasing it as follows: we position the
frog immediately in front of
and then proclaim
once. Once
reaches
, we can put the frog to the desired position using the aforementioned procedure.
Alternative solution:
Let us assume that there exists a function which would decipher the proclamations needed to get the resulting arrangement of . By changing the order of those proclamations, it is possible to get the reverse ordering, as well. This can be achieved by reversing the sequence of proclamations and replacing each proclamation with a series of same proclamations (left to the reader to calculate the exact number) which results in the reverse movement of the frog being moved.
The above function is yet to be realized. We will put the frog numbered immediately after the frog numbered
, then the frog numbered
immediately after the frog numbered
etc., with the frog numbered
being finally put immediately after the frog numbered
. Then, the frog numbered
can trivially be put immediately after the first frog.
Assume that we wish to place the frog immediately after
. We put the frog numbered
after the frog
, the frog
after
or
, the frog
after
or
or
etc. We repeat this with all frogs up to and including
.
At that moment, we have a circle which comprises two parts: the first one is formed by frogs numbered to
, and the second one by frogs numbered
to
(the position of the frog numbered
can be safely ignored).
Now we repeat the procedure, but this time without the frog numbered . We put the frog numbered
after the frog
, the frog
after
or
etc. The final step is to put the frog numbered
immediately after the frog
, or
. This results in the frog numbered
being put immediately after the frog numbered
, which was our initial intent.
Comments