SDKD 2016 Summer Single Contest #12 .B

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: 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: 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个了,并且总数不能超过x,即<=x;
并且最后数列的中位数要大于等于y;
看起来挺复杂的,先看第一个条件,就会想到这些数小一点好,满足第二个条件然后越小越好。
刚开始的想法是 所有的数越小越好,同时最好中位数是最小的y;
小于y的数的个数+1 == 大于等于y的个数 这样的话能使小的数的个数达到最大
使整体的和小。

#include <iostream>
#include <string>
#include <cstring>
#include <algorithm>
#include <cstdio>
using namespace std;
int n, k, p, x, y;
int a[1010];
int b[1010];
long long sum = 0;
int l = 0, m = 0, u = 0;
int main()
{
    scanf("%d%d%d%d%d", &n, &k, &p, &x, &y);
    for(int i = 0; i < k; i++)
    {
        scanf("%d", &a[i]);
        if(a[i] < y)
            l++;
        if(a[i] == y)
            m++;
        if(a[i] > y)
            u++;
        sum += a[i];
    }
    for(int i = k; i < n; i++)
    {
    //当小于y的个数少的时候 就 添加个1 这并不会改变中位数,
        if(l+1 <= u+m)
        {
            a[i] = 1;
            l++;
            sum += 1;
        }
        //当小于y的数大时, 就添加一个中位数 ,这个数最小 且不会改变中位数
        else if(l+1 > u+m)
        {
            a[i] = y;
            m++;
            sum += y;
        }
    }
    for(int i = 0; i < n; i++)
        b[i] = a[i];
    sort(b, b+n);
    //判断一下中位数 合不合适,
    if(sum > x || b[int(n/2)] < y)
        printf("%d", -1);
    else
        for(int i = k; i < n; i++)
        {
            if(i != k)
                printf(" ");
            printf("%d", a[i]);
        }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值