CF81C.Average Score
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
After the educational reform Polycarp studies only two subjects at school, Safety Studies and PE (Physical Education). During the long months of the fourth term, he received n marks in them. When teachers wrote a mark in the journal, they didn't write in what subject the mark was for, they just wrote the mark.
Now it's time to show the journal to his strict parents. Polycarp knows that recently at the Parent Meeting the parents were told that he received a Safety Studies marks and b PE marks ( a+b=n ). Now Polycarp wants to write a subject's name in front of each mark so that:
- there are exactly a Safety Studies marks,
- there are exactly b PE marks,
- the total average score in both subjects is maximum.
An average subject grade is the sum of all marks in it, divided by the number of them. Of course, the division is performed in real numbers without rounding up or down. Polycarp aims to maximize the x1+x2 , where x1 is the average score in the first subject (Safety Studies), and x2 is the average score in the second one (Physical Education).
输入格式
The first line contains an integer n ( 2<=n<=105 ), n is the number of marks in Polycarp's Journal. The second line contains two positive integers a,b ( 1<=a,b<=n−1,a+b=n ). The third line contains a sequence of integers t1,t2,...,tn ( 1<=ti<=5 ), they are Polycarp's marks.
输出格式
Print the sequence of integers f1,f2,...,fn , where fi ( 1<=fi<=2 ) is the number of a subject to which the i -th mark should be attributed. If there are several possible solutions, then print such that the sequence f1,f2,...,fn is the smallest lexicographically.
The sequence p1,p2,...,pn is lexicographically less than q1,q2,...,qn if there exists such j ( 1<=j<=n ) that pi=qi for all 1<=i<j , аnd p_{j}<q_{j} .
输入输出样例
输入#1
5 3 2 4 4 5 4 4
输出#1
1 1 2 1 2
输入#2
4 2 2 3 5 4 5
输出#2
1 1 2 2
输入#3
6 1 5 4 4 4 5 4 4
输出#3
2 2 2 1 2 2
说明/提示
In the first sample the average score in the first subject is equal to 4, and in the second one — to 4.5. The total average score is 8.5.