Editorial for Wesley's Anger Contest 6 Problem 4 - Runway Lights
Submitting an official solution before solving the problem yourself is a bannable offence.
Authors:
,Subtask 1
For the first subtask, we can try all triplets of indices and explicitly find all subsequences of WAC
in the string.
Time complexity:
Subtask 2
There are two different approaches for this subtask. The first method involves dynamic programming, where you count the number of subsequences of W
, WA
and WAC
for the first
The second method extends the first subtask's solution. A subsequence of a WAC
permutation found in WAC
in the repeated string. A subsequence of WAC
will contribute CAW
will contribute WAC
found in
The time complexity of the dynamic programming solution is
Subtask 3
For the full solution, both solutions from subtask 2 are combined. This can be done by trying and counting the subsequences for all permutations of WAC
on string
Time complexity:
Alternative Solution
We can first perform DP with only one copy of WAC
(This means that
Then, we can rephrase
Now, advancing from
Let
For a single copy of
And for
Finally, the answer is the fourth row of
Time complexity:
Comments
My solution in the contest combines this editorial with matrix power that works in
.
Yes, there are a lot of approaches that work for this problem. Plasmatic is currently writing an alternative editorial for the matrix solution :)
:)