Sereja and Coat Rack(水)


Sereja and Coat Rack Time Limit:1000MSMemory Limit:262144KB64bit IO Format:%I64d & %I64u
SubmitStatus

Description

Sereja owns a restaurant fornpeople. The restaurant hall has a coat rack withnhooks. Each restaurant visitor can use a hook to hang his clothes on it. Using thei-th hook costsairubles. Only one person can hang clothes on one hook.

Tonight Sereja expectsmguests in the restaurant. Naturally, each guest wants to hang his clothes on an available hook with minimum price (if there are multiple such hooks, he chooses any of them). However if the moment a guest arrives the rack has no available hooks, Sereja must pay adruble fine to the guest.

Help Sereja find out the profit in rubles (possibly negative) that he will get tonight. You can assume that before the guests arrive, all hooks on the rack are available, all guests come at different time, nobody besides themguests is visiting Sereja's restaurant tonight.

Input

The first line contains two integersnandd(1 ≤ n, d ≤ 100). The next line contains integersa1,a2,...,an(1 ≤ ai ≤ 100). The third line contains integerm(1 ≤ m ≤ 100).

Output

In a single line print a single integer — the answer to the problem.

Sample Input

Input
2 1 2 1 2
Output
3
Input
2 1 2 1 10
Output
-5

Hint

In the first test both hooks will be used, so Sereja gets1 + 2 = 3rubles.

In the second test both hooks will be used but Sereja pays a fine8times, so the answer is3 - 8 =  - 5.

题意:顾客挂衣服,每个称子可以挂一个衣服,每个钩子挂衣服所需要的价格不同,宾客会选便宜的 挂,钩子不够了房东要陪d元,现在有m个顾客,让求今晚房东收益;

代码:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
class clothes{
    public:
        int n,d,m;
        int a[110];
        clothes(int n,int d):n(n),d(d){
            for(int i = 0; i < n; i++){
                cin >> a[i];
            }
            cin >> m;
        }
        int work(){
            sort(a,a + n);
            for(int i = n; i < m; i++)
                a[i] = -d;
            int ans = 0;
            for(int i = 0; i < m; i++)
                ans += a[i];
            return ans;
        }
};
int main(){
    int n,d;
    while(~scanf("%d%d", &n, &d)){
        clothes _guest(n,d);
        cout << _guest.work() << endl;
    }
    return 0;
}

优质内容筛选与推荐>>
1、matplotlib坐标轴调整
2、带横线圆圈标题
3、DNS缓存欺骗攻击
4、各种URL生成方式的性能对比
5、优化方法


长按二维码向我转账

受苹果公司新规定影响,微信 iOS 版的赞赏功能被关闭,可通过二维码转账支持公众号。

    阅读
    好看
    已推荐到看一看
    你的朋友可以在“发现”-“看一看”看到你认为好看的文章。
    已取消,“好看”想法已同步删除
    已推荐到看一看 和朋友分享想法
    最多200字,当前共 发送

    已发送

    朋友将在看一看看到

    确定
    分享你的想法...
    取消

    分享想法到看一看

    确定
    最多200字,当前共

    发送中

    网络异常,请稍后重试

    微信扫一扫
    关注该公众号





    联系我们

    欢迎来到TinyMind。

    关于TinyMind的内容或商务合作、网站建议,举报不良信息等均可联系我们。

    TinyMind客服邮箱:support@tinymind.net.cn