Troy is fleshing out the details of his latest initiative, HackCCO! Everyone knows that the biggest appeal of any hackathon is the free food. As such, to ensure the unparalleled success of HackCCO, Troy ordered a comically large cart stacked with pizzas where the -th pizza from the top of the cart has flavour .
After the pizza cart arrives, Troy needs to arrange them into some number of stacks on a long table. To do this, he takes the pizzas one-by-one from the top of the cart and moves them onto the table, each time either placing the pizza on top of another stack of pizzas or forming a new stack on the table.
The hungry HackCCO participants are lined up to get pizza from the table, one-by-one. Troy knows that the -th person in line has a favourite pizza flavour of . When the -th person walks up to the table, if they see any pizzas of their favourite flavour at the top of any stack they will take any one of them at random. Otherwise, they won't take anything and will leave the table hungry.
Of course, hungry coders are not happy coders, so Troy doesn't want anyone to leave the table hungry. Thus, he asks you to help him find an arrangement of pizzas on the table such that it is possible for nobody to leave hungry. Furthermore, out of all such arrangements, Troy wants you to find one that creates the smallest number of stacks on the table (after all, tables can only get so long). Help him find such an arrangement or determine that it's impossible!
Input Specification
The first line of input contains a single integer .
The second line of input contains space-separated integers .
The third line of input contains space-separated integers .
Marks Awarded | Bounds on | Additional constraints |
---|---|---|
3 marks | ||
4 marks | All are distinct | |
5 marks | All are distinct | |
6 marks | None | |
7 marks | None |
[Post-CCO edit: Subtasks 4 and 5 may not be solvable efficiently. CCO competitors were judged only on subtasks 1-3.]
Output Specification
If it is impossible to arrange the pizzas as desired, output -1
.
Otherwise, your output should consist of three lines.
On the first line, output , the minimum number of stacks required.
On the second line, output space-separated integers , indicating that the -th pizza should be placed on stack .
On the third line, output space-separated integers , indicating that the -th person in line takes their pizza from the -th stack.
This stack must have a pizza of flavour at the top when the -th participant walks up to get their pizza.
Sample Input 1
7
1 2 3 2 2 1 3
2 3 1 2 3 2 1
Sample Output 1
2
1 2 1 2 1 2 2
1 2 2 2 1 2 1
Explanation for Sample 1
An illustration of the arrangement of pizzas on the table is shown above where red, yellow, and blue boxes represent pizzas of flavours , , and respectively.
Sample Input 2
2
1 2
1 1
Sample Output 2
-1
Comments