Problem A
Synchronizing Lists
It is so difficult to keep everything in order! For this
problem, you have two lists of numbers, each list having length
You want to keep the lists synchronized, but you know that the second list has gotten out of order. So you want to put it in the same order as the first list, according to the correspondences.
For example, given the two lists above, the second list
should be reordered as
Input
Input consists at most 100 test cases. Each test case begins
with an integer
Output
For each test case, print out the second list so that it has the same ordering as the first list. Print a blank line between lists.
Sample Input 1 | Sample Output 1 |
---|---|
4 10 67 68 28 55 73 10 6 7 98 23 61 49 1 79 9 1 15 32 47 68 39 24 0 |
6 55 73 10 68 24 39 32 1 47 15 |