CF368A.Sereja and Coat Rack

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Sereja owns a restaurant for nn people. The restaurant hall has a coat rack with nn hooks. Each restaurant visitor can use a hook to hang his clothes on it. Using the ii -th hook costs aia_{i} rubles. Only one person can hang clothes on one hook.

Tonight Sereja expects mm guests 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 a dd ruble 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 the mm guests is visiting Sereja's restaurant tonight.

输入格式

The first line contains two integers nn and dd (1<=n,d<=100)(1<=n,d<=100) . The next line contains integers a1a_{1} , a2a_{2} , ...... , ana_{n} (1<=ai<=100)(1<=a_{i}<=100) . The third line contains integer mm (1<=m<=100)(1<=m<=100) .

输出格式

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

输入输出样例

  • 输入#1

    2 1
    2 1
    2
    

    输出#1

    3
    
  • 输入#2

    2 1
    2 1
    10
    

    输出#2

    -5
    

说明/提示

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

In the second test both hooks will be used but Sereja pays a fine 88 times, so the answer is 38=53-8=-5 .

首页