Editorial for Wesley's Anger Contest 6 Problem 4 - Runway Lights


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.

Authors: Plasmatic, Zeyu

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: O((NK)3)

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 i characters. This solution should run in linear time to the size of the repeated string.

The second method extends the first subtask's solution. A subsequence of a WAC permutation found in S can contribute to the total number of subsequences of WAC in the repeated string. A subsequence of WAC will contribute (K+23) to the repeated string, while a subsequence of CAW will contribute (K3) to the total. Any other permutation of WAC found in S will contribute (K+13).

The time complexity of the dynamic programming solution is O(NK), while the time complexity of the second method is O(N3).

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 S using dynamic programming and adding to the total the different cases accordingly.

Time complexity: O(N)

Alternative Solution

We can first perform DP with only one copy of S using the following state: dp[i][j]= The number of subsequences of the prefix S[1i] equal to the first j characters of WAC (This means that j[0,3]).

Then, we can rephrase dp[i] as a 4 row vector in the following way:

dp[i]=[dp[i][0]dp[i][1]dp[i][2]dp[i][3]]

Now, advancing from dp[i] to dp[i+1] is a linear transformation on the vector dp[i]. Thus, we can think of each character in S as a matrix.

Let Mi be the matrix that represents the linear transformation of character Si.

For a single copy of S:

ans=(M|S|M|S|1M1)dp[0]

And for K concatenations of S:

ans=(M|S|M|S|1M1)Kdp[0]

Finally, the answer is the fourth row of ans.

Time complexity: O(N+K) or O(N+logK)


Comments


  • 4
    Moana  commented on Jan. 25, 2021, 2:52 p.m. edited

    My solution in the contest combines this editorial with matrix power that works in O(N+logK).


    • 3
      Zeyu  commented on Jan. 25, 2021, 3:15 p.m.

      Yes, there are a lot of approaches that work for this problem. Plasmatic is currently writing an alternative editorial for the matrix solution :)


      • 3
        Plasmatic  commented on Jan. 25, 2021, 4:32 p.m.

        :)