Editorial for Wesley's Anger Contest 5 Problem 3 - Super Squirrel Sisters
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Subtask 1
For subtask 1, we can check all possible
Time Complexity:
Subtask 2
For subtask 2, we can build a frequency array of the original frequency array. This will help check if all elements in the subarray have the same number of occurrences.
In order to prevent rebuilding the frequency array for every check, we can observe that many of the
Counting the number of distinct items can be done with the observation that we are only inserting items and the number of distinct items only increases when the frequency of the item before insertion is at
Time Complexity: Since we have a constant time check for each subarray, the time complexity is now
Subtask 3
For subtask 3, the maximum number of distinct items is
Time Complexity: Since there are only
Subtask 4
For the full solution, we'll need to combine both observations from subtasks 2 and 3. To generalize subtask 3, only subarrays with the length of a square number will be valid, and we can show that there are only
To generalize the method used in subtask 2, we can check subarrays of a fixed size instead. After inserting the rightmost element into the frequency array, we will remove the leftmost element from the frequency array.
Note that in order to be well below the given time limit, we can completely omit the second frequency array since we know that all items in a subarray of size
Time Complexity:
Comments