Editorial for An Animal Contest 4 P2 - Lavish 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.

Author: ThingExplainer

Solution 1:

We can solve this problem for each query by finding the first prefix LCM P such that P does not divide ti. If such a P does not exist, that means that all lights are on at time ti (ti is a multiple of all integers in array a), and we can output -1.

To answer these queries efficiently, we can construct a prefix LCM array, stopping when the prefix LCM exceeds the maximum allowed ti value, 109. For each query, we can run binary search and check if ti divides all numbers up to some index idx.

Be careful of the case when ti=0; 0 is a multiple of all integers.

Time Complexity: O(Nlog109+QlogN)

Solution 2:

If binary search isn't for you, observe that there are only a maximum of around log109 positions j where the light at position j will be the first to be off. We can find these positions by considering the prefix LCM and then for each query we can run linear search over these positions.

Again, be careful about edge cases such as when ti=0.

Time Complexity: O(Nlog109+Qlog109)

It is even possible to perform binary search instead of linear search in solution 2 to achieve a complexity of O(Nlog109+Qloglog109).


Comments

There are no comments at the moment.