博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
B - School Marks
阅读量:4509 次
发布时间:2019-06-08

本文共 3474 字,大约阅读时间需要 11 分钟。

Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

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 a1, ..., ak. 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.

 

Input

The first line contains 5 space-separated integers: nkpx and y (1 ≤ n ≤ 999, n is odd, 0 ≤ k < n1 ≤ p ≤ 1000, n ≤ x ≤ n·p1 ≤ 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: a1, ..., ak (1 ≤ ai ≤ p) — the marks that Vova got for the tests he has already written.

 

Output

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.

 

Sample Input

Input
5 3 5 18 4 3 5 4
Output
4 1
Input
5 3 5 16 4 5 5 5
Output
-1

Hint

The median of sequence a1, ..., an where n is odd (in this problem n is always odd) is the element staying on (n + 1) / 2 position in the sorted list of ai.

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".

 

题意:

共有n个数字,已知k个,所有数字不大于p,求剩余未知数字使数字总和不大于x且中位数不小于y。

 

按y将已知的k个数字分为左和右两边,再在两侧添加n-k个数字,左侧添1,右侧添y以保证总和尽可能的小。

 

附AC代码:

1 #include
2 #include
3 #include
4 #include
5 using namespace std; 6 7 int n,k,p,x,y,xx,mid; 8 int a[1100],ans[1100]; 9 10 int main(){11 while(cin>>n>>k>>p>>x>>y){12 memset(a,0,sizeof(a));13 memset(ans,0,sizeof(ans));14 int sum=0,cnt=0;15 int l=0,r=0;16 for(int i=0;i
>a[i];18 sum+=a[i];19 if(a[i]
=y)22 r++;23 }24 mid=n/2+1;25 if(l>=mid){ //"=" 当左边数目大于或等于一半+1时,中位数不可能为>=y 26 cout<<"-1"<
x){ //大于x时同样不符合要求 43 cout<<"-1"<

 

转载于:https://www.cnblogs.com/Kiven5197/p/5696910.html

你可能感兴趣的文章
【漫谈数据仓库】 如何优雅地设计数据分层 ODS DW DM层级
查看>>
POJ - 2559 && POJ - 3494 (单调栈)
查看>>
POJ - 2796 Feel Good (单调栈)
查看>>
2019牛客暑期多校训练营(第一场合集)
查看>>
2019牛客暑期多校训练营(第二场合集)
查看>>
2019牛客暑期多校训练营(第四场合集)
查看>>
树的直径
查看>>
随机面试题
查看>>
git
查看>>
creat-react-app http升级为https出现的问题
查看>>
ES6 symbol
查看>>
vue 坑
查看>>
js手写call函数
查看>>
Object.prototype.toString.call(obj) 为什么有用以及疑惑点
查看>>
小程序生成二维码,海报
查看>>
.NET Core 原生动态代理
查看>>
.net core 拦截器的使用
查看>>
sqlyog 下载
查看>>
动态WebAPI实现原理
查看>>
ACM-ICPC 2015 Changchun Preliminary Contest——J题
查看>>