302784: CF540B. School Marks
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
School Marks
题意翻译
对于一个长度为 $n$ 的序列 $a$,$1\le a_i\le p$ 给定序列的 $k$ 项,你需要确定剩下 $n-k$ 项 求是否存在一种方案,使得序列的中位数不小于 $y$,并且总和不大于 $x$ 无解输出 `-1`,有解输出方案题目描述
Little Vova studies programming in an elite school. Vova and his classmates are supposed to write $ n $ progress tests, for each test they will get a mark from 1 to $ p $ . 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 $ x $ , 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 $ y $ 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 $ k $ tests and got marks $ a_{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: $ n $ , $ k $ , $ p $ , $ x $ and $ y $ ( $ 1<=n<=999 $ , $ n $ is odd, $ 0<=k<n $ , $ 1<=p<=1000 $ , $ n<=x<=n·p $ , $ 1<=y<=p $ ). Here $ n $ is the number of tests that Vova is planned to write, $ k $ is the number of tests he has already written, $ p $ is the maximum possible mark for a test, $ x $ is the maximum total number of points so that the classmates don't yet disturb Vova, $ y $ is the minimum median point so that mom still lets him play computer games. The second line contains $ k $ space-separated integers: $ a_{1},...,a_{k} $ ( $ 1<=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 $ n-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