Editorial for TLE '16 Contest 7 P3 - NOR
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.
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
It is not necessary to use a segment tree or a sparse table to solve this problem. These approaches are overkill and run quite slowly. Binary search is also not necessary, and it increases execution time.
The first observation is that
To solve a query, it is only necessary to get the largest 0
's, let
: In this case, all integers are equal to . : In this case, only the first integer is equal to . The rest are equal to . : In this case, , because and .
A query can be solved in
Time Complexity:
Comments