CF873E.Awards For Contestants
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Alexey recently held a programming contest for students from Berland. n students participated in a contest, i -th of them solved ai problems. Now he wants to award some contestants. Alexey can award the students with diplomas of three different degrees. Each student either will receive one diploma of some degree, or won't receive any diplomas at all. Let cntx be the number of students that are awarded with diplomas of degree x ( 1<=x<=3 ). The following conditions must hold:
- For each x ( 1<=x<=3 ) cnt_{x}>0 ;
- For any two degrees x and y cntx<=2⋅cnty .
Of course, there are a lot of ways to distribute the diplomas. Let bi be the degree of diploma i -th student will receive (or −1 if i -th student won't receive any diplomas). Also for any x such that 1<=x<=3 let cx be the maximum number of problems solved by a student that receives a diploma of degree x , and dx be the minimum number of problems solved by a student that receives a diploma of degree x . Alexey wants to distribute the diplomas in such a way that:
- If student i solved more problems than student j , then he has to be awarded not worse than student j (it's impossible that student j receives a diploma and i doesn't receive any, and also it's impossible that both of them receive a diploma, but b_{j}<b_{i} );
- d1−c2 is maximum possible;
- Among all ways that maximize the previous expression, d2−c3 is maximum possible;
- Among all ways that correspond to the two previous conditions, d3−c−1 is maximum possible, where c−1 is the maximum number of problems solved by a student that doesn't receive any diploma (or 0 if each student is awarded with some diploma).
Help Alexey to find a way to award the contestants!
输入格式
The first line contains one integer number n ( 3<=n<=3000 ).
The second line contains n integer numbers a1,a2,...,an ( 1<=ai<=5000 ).
输出格式
Output n numbers. i -th number must be equal to the degree of diploma i -th contestant will receive (or −1 if he doesn't receive any diploma).
If there are multiple optimal solutions, print any of them. It is guaranteed that the answer always exists.
输入输出样例
输入#1
4 1 2 3 4
输出#1
3 3 2 1
输入#2
6 1 4 3 1 1 2
输出#2
-1 1 2 -1 -1 3