Editorial for Yet Another Contest 2 P2 - Secret Sequence


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: Josh

For this editorial, denote f(x,y) as the interactor's response after making a query with l=x and r=y. Also, a1,a2,,aN is the sequence which we are trying to find. Finally, let denote the bitwise XOR operator.

M=1

If we do not restrict ourselves to maximising the value of M, then there are many possible solutions, one of which will be described here.

First, we can query f(1,2), f(1,3) and f(2,3), which allows us to find a1, a2 and a3.

Then, for each x from 4 up to N, we can find ax by calculating ax1f(x1,x).

M=N12

Again, there are many constructions which produce a value of M=N12. It turns out that this is the maximum possible value of M. A proof of this will follow after an example of a possible construction.

First, find the value of f(i,N) for 1NN+12. This lets us work out the value of ax for 1xN12, since ax=f(x,N)f(x+1,N).

Then, we can work out the value of ax for N+12x<N with one additional query for each x, since ax=f(1,x)a1a2ax1. Cumulative prefix XOR sums can be used to speed up this computation.

Finally, we can work out aN as equal to f(1,N)a1a2aN1. Note that f(1,N) has already been found from the first step, so this does not require an extra query.

This solves the problem with N queries and M=N12.

Now, let's consider why this value of M is maximal. Let px represent the prefix XOR sequence, where px=a1a2ax. For convenience, let p0=0. Note that being able to work out sequence p is a necessary and sufficient condition for being able to work out sequence a, so we will turn our attention to finding sequence p.

We can see that f(l,r)=pl1pr. Therefore, if we know f(l,r) and one of pl1 or pr, then we can work out the other value out of pl1 or pr.

This motivates the following idea: create a graph containing N+1 nodes labelled 0,1,2,,N. Whenever we make a query asking for f(l,r), then add a bidirectional edge between l1 and r. Then, two nodes x and y are connected if and only if knowing the value of px allows us to figure out py, and vice versa.

After performing N queries, we require the graph to be connected; otherwise, there is no unique solution. Since there are N+1 nodes and N edges, the edges must form a spanning tree of this graph. This also explains why the minimal number of queries to find sequence a is N.

Recall that the value of M is the minimum value of |xy|1, for all edges (x,y) in the graph. Now, consider node N2. Since the edges form a spanning tree, this node must be connected to another node. However, the minimum value of |N2x|1 for 0xN is N12. This proves that M cannot exceed N12. On the other hand, we have already shown via construction that this value of M is attainable, so N12 is the maximum possible value of M.

This graph idea also lends itself to a different construction. First, generate any spanning tree of the N+1 nodes such that |xy|1N12 for all edges (x,y). For each edge (x,y) in this graph with x<y, let it have a weight of f(x+1,y). We know that p0=0. Performing a DFS/BFS on this graph, we can work out the entire sequence p, as px is simply the XOR sum of all edges on the path from node 0 to node x. Once we know p, we can easily find sequence a, since ax=px1px for all 1xN.


Comments

There are no comments at the moment.