On February, 30th n students came in the Center for Training Olympiad Programmers (CTOP) of the Berland State University. They came one by one, one after another. Each of them went in, and before sitting down at his desk, greeted with those who were present in the room by shaking hands. Each of the students who came in stayed in CTOP until the end of the day and never left.
At any time any three students could join together and start participating in a team contest, which lasted until the end of the day. The team did not distract from the contest for a minute, so when another student came in and greeted those who were present, he did not shake hands with the members of the contest writing team. Each team consisted of exactly three students, and each student could not become a member of more than one team. Different teams could start writing contest at different times.
Given how many present people shook the hands of each student, get a possible order in which the students could have come to CTOP. If such an order does not exist, then print that this is impossible.
Please note that some students could work independently until the end of the day, without participating in a team contest.
Input
The first line contains integer n (1 ≤ n ≤ 2·105) — the number of students who came to CTOP. The next line contains n integers a1, a2, ..., an (0 ≤ ai < n), where aiis the number of students with who the i-th student shook hands.
Output
If the sought order of students exists, print in the first line "Possible" and in the second line print the permutation of the students' numbers defining the order in which the students entered the center. Number i that stands to the left of number jin this permutation means that the i-th student came earlier than the j-th student. If there are multiple answers, print any of them.
If the sought order of students doesn't exist, in a single line print "Impossible".
Examples
Input
5 2 1 3 0 1
Output
Possible 4 5 1 3 2
Input
9 0 2 3 4 1 1 0 2 2
Output
Possible 7 5 2 1 6 8 3 4 9
Input
4 0 2 1 1
Output
Impossible
Note
In the first sample from the statement the order of events could be as follows:
In the second sample from the statement the order of events could be as follows:
In the third sample from the statement the order of events is restored unambiguously:
题意:
有n个人去参加比赛,轮流进入。每三个人可以在任何时候组一队,这样别人来的时候就不能和他们三个握手。
现在给出每个人和别人握手的数目,求出进入的顺序。
思路:
每次都尽量让屋内人数增加,等无法让人进来时,再开始组队一次,然后继续让人进来,重复这个过程。优先满足握手的人数最多的,因为这个数很大,只有在屋内人数较多时才能凑到,所以尽量先满足最大值,没有能进的人再组队,然后继续让ai最大的进来。
#include
#include
#include
#include
#include
#include
#include
#include