CF540B.School Marks

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little Vova studies programming in an elite school. Vova and his classmates are supposed to write nn progress tests, for each test they will get a mark from 1 to pp . Vova is very smart and he can write every test for any mark, but he doesn't want to stand out from the crowd too much. If the sum of his marks for all tests exceeds value xx , then his classmates notice how smart he is and start distracting him asking to let them copy his homework. And if the median of his marks will be lower than yy points (the definition of a median is given in the notes), then his mom will decide that he gets too many bad marks and forbid him to play computer games.

Vova has already wrote kk tests and got marks a1,...,aka_{1},...,a_{k} . He doesn't want to get into the first or the second situation described above and now he needs to determine which marks he needs to get for the remaining tests. Help him do that.

输入格式

The first line contains 5 space-separated integers: nn , kk , pp , xx and yy ( 1<=n<=9991<=n<=999 , nn is odd, 0<=k<n , 1<=p<=10001<=p<=1000 , n<=x<=npn<=x<=n·p , 1<=y<=p1<=y<=p ). Here nn is the number of tests that Vova is planned to write, kk is the number of tests he has already written, pp is the maximum possible mark for a test, xx is the maximum total number of points so that the classmates don't yet disturb Vova, yy is the minimum median point so that mom still lets him play computer games.

The second line contains kk space-separated integers: a1,...,aka_{1},...,a_{k} ( 1<=ai<=p1<=a_{i}<=p ) — the marks that Vova got for the tests he has already written.

输出格式

If Vova cannot achieve the desired result, print "-1".

Otherwise, print nkn-k space-separated integers — the marks that Vova should get for the remaining tests. If there are multiple possible solutions, print any of them.

输入输出样例

  • 输入#1

    5 3 5 18 4
    3 5 4
    

    输出#1

    4 1
    
  • 输入#2

    5 3 5 16 4
    5 5 5
    

    输出#2

    -1
    

说明/提示

The median of sequence a1a_{1} , ..., ana_{n} where nn is odd (in this problem nn is always odd) is the element staying on (n+1)/2(n+1)/2 position in the sorted list of aia_{i} .

In the first sample the sum of marks equals 3 + 5 + 4 + 4 + 1 = 17, what doesn't exceed 18, that means that Vova won't be disturbed by his classmates. And the median point of the sequence {1, 3, 4, 4, 5} equals to 4, that isn't less than 4, so his mom lets him play computer games.

Please note that you do not have to maximize the sum of marks or the median mark. Any of the answers: "4 2", "2 4", "5 1", "1 5", "4 1", "1 4" for the first test is correct.

In the second sample Vova got three '5' marks, so even if he gets two '1' marks, the sum of marks will be 17, that is more than the required value of 16. So, the answer to this test is "-1".

首页