Editorial for DMOPC '18 Contest 3 P3 - Bob and Math Class
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
For the first subtask, check each subarray. You can find the longest block of only T
s or only F
s in a subarray in
Time Complexity:
For the second subtask, when considering subarrays, categorize them by their left endpoint. Then you can find the longest block of only T
s or only F
s in each of the subarrays with a certain left endpoint in
Time Complexity:
The third subtask was meant to reward any badly done
There are several solutions to the final subtask. The solution discussed below is difficult to come up with, but has a simple implementation.
All indices are T
s or only F
s which the element at index
Now consider any odd-length subarray. Observe that if this subarray is suspicious, then the middle element must be part of the subarray's longest block of only T
s or F
s. We will count the number of odd-length subarrays given its middle element. From the previous observation, it can be seen that the number of odd-length subarrays with middle element at index
The reasoning for even-length subarrays is similar. If the T
or both F
, there are
Time Complexity:
Comments