Editorial for DMOPC '17 Contest 5 P5 - XOR Bridges
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
For the first two subtasks, the constraints are low enough that finding all edges and DFSing for each query passes.
Time Complexity:
For subtask 3, observe that the last bits (where ) of all the node values don't matter since is the largest number using only the last bits. It is not hard to see that two nodes are connected if and only if their values ignoring the last bits are equal.
Time Complexity:
For the final subtask, we use disjoint sets. Consider the largest bit any value or has. Split the nodes we have into two groups, the ones with this bit and the ones without. If does not have this bit, then no nodes in one group can ever union with nodes in the other group. So we then repeat this process for the next bit with each of the two groups. If this bit is for , then any two nodes which have the same state for this bit can union. So we union all the ones in the same group. Then, we repeat this process for the next bit with the entire group. This process can be done by recursively calling a function which takes the index of the current bit being considered and an array containing the appropriate nodes. Remember to union everyone if the index of the current bit ever hits .
Time Complexity:
Comments