Editorial for Wesley's Anger Contest 5 Problem 5 - A Squirrel's Life
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Subtask 1
For subtask 1, we can generate all possible sequences starting from
Time Complexity: The time complexity is
Subtask 2
For subtask 2, we can tackle this problem using dynamic programming. The state can be modelled using the current node, the length of the current sequence, a boolean marking whether or not event
Alternatively, this can be tackled using matrix exponentiation. If we analyze the transition of the dynamic programming solution it shares similarities with raising the adjacency matrix to the power of
Time Complexity: For the dynamic programming solution, the time complexity is
Subtask 3
Subtask 3 is an extension of subtask 2. For the dynamic programming solution, one more parameter to describe the number of supplies found is required. For the matrix exponentiation solution, we need to build a graph with
Time Complexity: For the dynamic programming solution, the time complexity is
Subtasks 4 and 5
These subtasks are meant to reward contestants who attempted to optimize their solution from subtask 3. The following subtasks' main objective is to reduce the constants. This can be done by reducing the number of nodes in the graph or by optimizing the matrix multiplication itself.
The first optimization that can be done is to take out the
The second optimization comes from the observation that a lot of the entries in the matrix will always be equal to
The third optimization comes from the observation that
Time Complexity:
Subtask 6
For the full solution, all three optimizations should be used to pass within the time limit. A proper implementation should be able to pass with ease and will be left as an exercise.
Note that there is an alternate solution which uses Berlekamp-Massey to find the shortest linear recurrence relation for a sequence. The sequence can be determined using the dynamic programming solution from subtasks 2 and 3.
Time Complexity:
Comments