305723: CF1081B. Farewell Party

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Farewell Party

题意翻译

$n$ 个人参加聚会,每个人戴着一顶帽子,帽子编号在 $[1,n]$ 范围内,第 $i$ 个人知道有 $a_i$ 个人的帽子种类和他不同。 现给你一组数据,求是否存在合法解。若存在,则输出一行 `Possible`,并在下一行输出每个人戴的帽子种类(如有多解输出任意一种即可)。若不存在,输出 `Impossible`。

题目描述

Chouti and his classmates are going to the university soon. To say goodbye to each other, the class has planned a big farewell party in which classmates, teachers and parents sang and danced. Chouti remembered that $ n $ persons took part in that party. To make the party funnier, each person wore one hat among $ n $ kinds of weird hats numbered $ 1, 2, \ldots n $ . It is possible that several persons wore hats of the same kind. Some kinds of hats can remain unclaimed by anyone. After the party, the $ i $ -th person said that there were $ a_i $ persons wearing a hat differing from his own. It has been some days, so Chouti forgot all about others' hats, but he is curious about that. Let $ b_i $ be the number of hat type the $ i $ -th person was wearing, Chouti wants you to find any possible $ b_1, b_2, \ldots, b_n $ that doesn't contradict with any person's statement. Because some persons might have a poor memory, there could be no solution at all.

输入输出格式

输入格式


The first line contains a single integer $ n $ ( $ 1 \le n \le 10^5 $ ), the number of persons in the party. The second line contains $ n $ integers $ a_1, a_2, \ldots, a_n $ ( $ 0 \le a_i \le n-1 $ ), the statements of people.

输出格式


If there is no solution, print a single line "Impossible". Otherwise, print "Possible" and then $ n $ integers $ b_1, b_2, \ldots, b_n $ ( $ 1 \le b_i \le n $ ). If there are multiple answers, print any of them.

输入输出样例

输入样例 #1

3
0 0 0

输出样例 #1

Possible
1 1 1 

输入样例 #2

5
3 3 2 2 2

输出样例 #2

Possible
1 1 2 2 2 

输入样例 #3

4
0 1 2 3

输出样例 #3

Impossible

说明

In the answer to the first example, all hats are the same, so every person will say that there were no persons wearing a hat different from kind $ 1 $ . In the answer to the second example, the first and the second person wore the hat with type $ 1 $ and all other wore a hat of type $ 2 $ . So the first two persons will say there were three persons with hats differing from their own. Similarly, three last persons will say there were two persons wearing a hat different from their own. In the third example, it can be shown that no solution exists. In the first and the second example, other possible configurations are possible.

Input

题意翻译

$n$ 个人参加聚会,每个人戴着一顶帽子,帽子编号在 $[1,n]$ 范围内,第 $i$ 个人知道有 $a_i$ 个人的帽子种类和他不同。 现给你一组数据,求是否存在合法解。若存在,则输出一行 `Possible`,并在下一行输出每个人戴的帽子种类(如有多解输出任意一种即可)。若不存在,输出 `Impossible`。

加入题单

算法标签: