CF534D.Handshakes

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

On February, 30th nn 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.

输入格式

The first line contains integer nn ( 1<=n<=21051<=n<=2·10^{5} ) — the number of students who came to CTOP. The next line contains nn integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 0<=a_{i}<n ), where aia_{i} is the number of students with who the ii -th student shook hands.

输出格式

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 ii that stands to the left of number jj in this permutation means that the ii -th student came earlier than the jj -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".

输入输出样例

  • 输入#1

    5
    2 1 3 0 1
    

    输出#1

    Possible
    4 5 1 3 2 
  • 输入#2

    9
    0 2 3 4 1 1 0 2 2
    

    输出#2

    Possible
    7 5 2 1 6 8 3 4 9
  • 输入#3

    4
    0 2 1 1
    

    输出#3

    Impossible
    

说明/提示

In the first sample from the statement the order of events could be as follows:

  • student 4 comes in ( a4=0a_{4}=0 ), he has no one to greet;
  • student 5 comes in ( a5=1a_{5}=1 ), he shakes hands with student 4;
  • student 1 comes in ( a1=2a_{1}=2 ), he shakes hands with two students (students 4, 5);
  • student 3 comes in ( a3=3a_{3}=3 ), he shakes hands with three students (students 4, 5, 1);
  • students 4, 5, 3 form a team and start writing a contest;
  • student 2 comes in ( a2=1a_{2}=1 ), he shakes hands with one student (number 1).

In the second sample from the statement the order of events could be as follows:

  • student 7 comes in ( a7=0a_{7}=0 ), he has nobody to greet;
  • student 5 comes in ( a5=1a_{5}=1 ), he shakes hands with student 7;
  • student 2 comes in ( a2=2a_{2}=2 ), he shakes hands with two students (students 7, 5);
  • students 7, 5, 2 form a team and start writing a contest;
  • student 1 comes in( a1=0a_{1}=0 ), he has no one to greet (everyone is busy with the contest);
  • student 6 comes in ( a6=1a_{6}=1 ), he shakes hands with student 1;
  • student 8 comes in ( a8=2a_{8}=2 ), he shakes hands with two students (students 1, 6);
  • student 3 comes in ( a3=3a_{3}=3 ), he shakes hands with three students (students 1, 6, 8);
  • student 4 comes in ( a4=4a_{4}=4 ), he shakes hands with four students (students 1, 6, 8, 3);
  • students 8, 3, 4 form a team and start writing a contest;
  • student 9 comes in ( a9=2a_{9}=2 ), he shakes hands with two students (students 1, 6).

In the third sample from the statement the order of events is restored unambiguously:

  • student 1 comes in ( a1=0a_{1}=0 ), he has no one to greet;
  • student 3 comes in (or student 4) ( a3=a4=1a_{3}=a_{4}=1 ), he shakes hands with student 1;
  • student 2 comes in ( a2=2a_{2}=2 ), he shakes hands with two students (students 1, 3 (or 4));
  • the remaining student 4 (or student 3), must shake one student's hand ( a3=a4=1a_{3}=a_{4}=1 ) but it is impossible as there are only two scenarios: either a team formed and he doesn't greet anyone, or he greets all the three present people who work individually.
首页