Codeforces 540B - School Marks

来源:互联网 发布:java ftp断点续传 下载 编辑:程序博客网 时间:2024/06/05 16:46

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 ≤ 999n is odd, 0 ≤ k < n1 ≤ p ≤ 1000n ≤ 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: 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.

Examples
input
5 3 5 18 43 5 4
output
4 1
input
5 3 5 16 45 5 5
output
-1

本题的题意是给出n个测试k个成绩,补全n-k个成绩

要求是所有成绩之和不能大于x 并且成绩排序之后的中位数不能小于 y

思路是将数据分成两半 一半是大于y的并且数量是n/2+1,另一半是小于y的

只需要按照数量来构造就行

代码如下:

#include<cstdio>#include<iostream>#include<algorithm>#include<cstring>using namespace std;#define N 1005int a[N],b[N];int main(){int i,j,n,k,x,y,p,pp,sum;while(scanf("%d %d %d %d %d",&n,&k,&p,&x,&y)!=EOF){sum=0;memset(a,0,sizeof(a));memset(b,0,sizeof(b));int l=0,r=0;for(i=1;i<=k;i++){cin>>a[i];sum+=a[i];if(a[i]<y) l++;else r++;}if(sum>x||sum+n-k>x){cout<<"-1"<<endl;continue;}int half=n/2+1;if(l>=half){cout<<"-1"<<endl;continue;} i=1;if(r<=half){ pp=half-r;for(i=1;i<=pp;i++){b[i]=y;sum+=b[i];    }}int jj=n-l-r-i+1;        while(jj){b[i]=1;sum++;jj--;i++;} if(sum>x) cout<<"-1"<<endl;      else {     for(i=1;i<=n-k;i++)     cout<<b[i]<<" ";     cout<<endl; }}return 0;}


0 0
原创粉丝点击