There is a hidden permutation $a_1, a_2,\dots, a_n$ of integers $1, 2,\dots, n$ . Your task is to find this permutation.
To do this, you can ask questions: you can choose two indices $i$ and $j$ and you will be told if $a_i < a_j$ .
This is an interactive problem. Your code will interact with the grader using standard input and output. You should start by reading a single integer $n$ : the length of the permutation.
On your turn, you can print one of the following:
Each line should be followed by a line break. You must make sure the output gets flushed after printing each line.
3 ? 3 2 NO ? 3 1 YES ! 3 1 2\n · · \n \n · · \n \n · · · \n
The hidden permutation is $[3, 1, 2]$ . The first question asks if $a_3 < a_2$ which is false, so the answer is NO . The second question asks if $a_3 < a_1$ which is true, so the answer is YES .