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.

Author: d

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 anythingNOR1=0, where anything can be any expression. In particular, if Ay=1, then the answer to the query x y is always 0.

To solve a query, it is only necessary to get the largest k that satisfies both ky and Ak=1. In case A1Ay are all 0's, let k=0. This information can be preprocessed and stored in an array in O(N) time (linear time). Now there are 3 cases to consider:

  • k<x: In this case, all integers are equal to 0.
  • k=x: In this case, only the first integer is equal to 1. The rest are equal to 0.
  • k>x: In this case, (AxNORAx+1NORNORAk)=0, because Ak=1 and anythingNOR1=0.

A query can be solved in O(1) (constant time). Make sure to print the correct answer for each case.

Time Complexity: O(N+Q)


Comments

There are no comments at the moment.