Editorial for An Animal Contest 5 P2 - Permutations & Products


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

Subtask 1

Since N=3, there are only 6 possible permutations. Casework can be done for each of them.

Time Complexity: O(N!)

Subtask 2

This editorial will highlight one of several solutions to this problem. If you have a different solution, feel free to share it in the comments!

We will query A2,A3,,AN with A1, storing the result in an array (let's call it P). Let MIN be the smallest element in P and let MAX be the largest element in P. If MAX=N, this means that A1=1. Otherwise, MIN=1×A1 which implies that MIN=A1. Thus, we have found A1.

Now that we have found A1, we can divide every element in P by it, and at this point, we have found every element in A.

Time Complexity: O(N)


Comments


  • 13
    jeffreykaili  commented on Feb. 3, 2022, 2:30 a.m. edited

    There's an alternative solution that extends into the hard version quite nicely.

    First, find three values using three queries:

    1. Query indices 1 and 2, 1 and 3, 2 and 3.
    2. Then you have A1×A2, A1×A3, and A2×A3, and you can solve the system of equations for A1, A2, and A3.

    With the value of A1, use your remaining N4 queries to get A4,,AN1.

    Finally, since A is a permutation of the first N integers, AN=N(N+1)2i=1N1Ai. For the hard version, you can simply select different indices to find your first three values and query accordingly.