Editorial for An Animal Contest 4 P2 - Lavish Lights
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Solution 1:
We can solve this problem for each query by finding the first prefix LCM -1
.
To answer these queries efficiently, we can construct a prefix LCM array, stopping when the prefix LCM exceeds the maximum allowed
Be careful of the case when
Time Complexity:
Solution 2:
If binary search isn't for you, observe that there are only a maximum of around
Again, be careful about edge cases such as when
Time Complexity:
It is even possible to perform binary search instead of linear search in solution 2 to achieve a complexity of
Comments