题意
有n个人去参加比赛,轮流进入。
每三个人可以在任何时候组一队,这样别人来的时候就不能和他们三个握手。
现在给出每个人和别人握手的数目,求出进入的顺序。
思路
我们可以先把握手次数多的人干掉。
也就是通过一次组队,解决多人。
先一次性进入尽量多的人。
当人进满了以后,这时候只能开始组队了,不然其他人就进不来。
每组一队,当前人数-3.然后在这时候再让尽量多的人进来,不能浪费。
到进满以后再组队,依次循环。
代码
#include <stack>
#include <cstdio>
#include <list>
#include <cassert>
#include <set>
#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <functional>
#include <cstring>
#include <algorithm>
#include <cctype>
#include <string>
#include <map>
#include <cmath>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/hash_policy.hpp>
using namespace std;
#define LL long long
#define ULL unsigned long long
#define SZ(x) (int)x.size()
#define Lowbit(x) ((x) & (-x))
#define MP(a, b) make_pair(a, b)
#define MS(arr, num) memset(arr, num, sizeof(arr))
#define PB push_back
#define X first
#define Y second
#define ROP freopen("input.txt", "r", stdin);
#define MID(a, b) (a + ((b - a) >> 1))
#define LC rt << 1, l, mid
#define RC rt << 1|1, mid + 1, r
#define LRT rt << 1
#define RRT rt << 1|1
const double PI = acos(-1.0);
const int INF = 0x3f3f3f3f;
const double eps = 1e-8;
const int MAXN = 2e5+10;
const int MOD = 2012;
const int dir[][2] = { {-1, 0}, {1, 0}, {0, -1}, {0, 1} };
int cases = 0;
typedef pair<int, int> pii;
vector<int> ans, G[MAXN];
int main()
{
//ROP;
int n, curPeo = 0;
scanf("%d", &n);
for (int i = 1; i <= n; i++)
{
int tmp;
scanf("%d", &tmp);
G[tmp].PB(i);
}
for (int i = 0; i < n; i++) //第一次尽量进人
{
if (!G[i].empty())
{
curPeo++;
ans.PB(G[i].back());
G[i].pop_back();
}
else
{
curPeo = i;
break;
}
}
while (true)
{
curPeo -= 3;
if (curPeo < 0) break;
for (int i = curPeo; i < n; i++)
{
if (!G[i].empty())
{
ans.PB(G[i].back());
G[i].pop_back();
curPeo++;
}
else break;
}
}
if (SZ(ans) != n) puts("Impossible");
else
{
puts("Possible");
for (auto i : ans) printf("%d ", i);
}
return 0;
}