Editorial for Google Code Jam '18 Qualification Round Problem A - Saving The Universe Again
Submitting an official solution before solving the problem yourself is a bannable offence.
Test set 1
Since there is at most one C
instruction in this test set, we
can solve the two cases independently.
If there is no C
instruction in
If there is one C
instruction in C
instruction in the program. Assuming
that there is at least one position for the C
instruction that
causes the total damage not to exceed C
instruction.
Test set 2
To solve test set 2, we will first derive a formula to compute the total
damage based on the positions of the C
and S
instructions in C
and S
instructions in S
instructions to the right of
the C
instruction, where
Note that the C
instruction will increase the damage of the
subsequent beams by CSSCSSCSS
, initially, all of the S
instructions will
inflict a damage of S
instruction. Since the robot has been charged twice, the damage output by the
last instruction will be C
)
C
). By breaking
down the damage by each S
instruction in the same manner, the
total damage output,
Next, we investigate how each swap affects the amount of damage. A swap on
adjacent characters which are the same will not affect the equation. When we
swap the C
instruction with a S
instruction to
its right, the value of S
than before. On the other hand, swapping the C
instruction with an S
instruction on its left will increase the
value of CS
.
Therefore, executing
Intuitively, all of this math boils down to a very simple algorithm! As long
as there is an instance of CS
in the current program, we always
swap the latest (rightmost) instance. After each swap, we can recompute the
damage and check whether it is still more than CS
to swap, but the damage that the program will cause is still
more than
Test Data We recommend that you practice debugging solutions without looking at the test data.
Comments