#P12948. [GCJ Farewell Round #1] Rainbow Sort
[GCJ Farewell Round #1] Rainbow Sort
题目描述
Your friend Charles gives you a challenge. He puts cards on a table and arranges them in a line in an order that he chooses. Each card has a single color, and each color can be on one or more cards.
Charles then asks you to write a positive integer on each card without altering his chosen order such that:
- The integers you write appear in non-decreasing order when cards are read from left to right.
- Cards of the same color have the same integer written on them.
- Cards of different colors have different integers written on them.
Finally, Charles wants you to order the colors in increasing order of written integer. For example, if blue cards have a 2, red cards have a 5, and green cards have a 3, the color order would be blue, green, red.
输入格式
The first line of the input gives the number of test cases, . test cases follow.
Each test case begins with a line containing the integer . The next line contains integers, , , , , where represents the color of the -th card from the left.
输出格式
For each test case, output one line containing Case #x: y, where is the test case number (starting from 1) and is the set of colors, once each, listed in the requested order. If it is impossible to write integers in the given cards while adhering to all the rules, must be IMPOSSIBLE instead.
2
4
3 8 8 2
5
3 8 2 2 8
Case #1: 3 8 2
Case #2: IMPOSSIBLE
提示
Sample Explanation
In Sample Case #1, there are 3 different colors on 4 cards. One possible solution is to write the following integers, in order: 1, 2, 2, and 3. Notice that the same integer (2) is written on both cards of color 8. Then, the order of the colors is 3, 8, 2.
In Sample Case #2, let and be the integers written in cards of color 8 and 2, respectively. If then the rightmost two cards would not have their integers in non-decreasing order. If that would happen to the second and third card from the left. Finally, is forbidden by one of the rules. Therefore, there is no valid way of writing the integers in this case.
Limits
- $1 \leq \mathbf{S}_{i} \leq 10^{5}, \text{ for all } i.$
Test Set 1 (4Pts, Visible Verdict)
Test Set 2 (10Pts, Visible Verdict)