您的位置:首页 > 其它

CodeForces 368A Sereja and Coat Rack

2016-01-15 11:02 253 查看
A. Sereja and Coat Rack

time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

Sereja owns a restaurant for n people. The restaurant hall has a coat rack withn hooks. Each restaurant visitor can use a hook to hang his clothes on it. Using thei-th
hook costs ai rubles. Only one person can hang clothes on one hook.

Tonight Sereja expects m 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
d 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 them
guests is visiting Sereja's restaurant tonight.

Input
The first line contains two integers n andd
(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 test(s)

Input
2 1
2 1
2


Output
3


Input
2 1
2 1
10


Output
-5


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

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

#include<iostream>
#include<algorithm>
using namespace std;

int main(){
int n,d,m,i,sum,x;
int num[110];
while(cin>>n>>d){
sum=0;
x=0;
for(i=0;i<n;i++){
cin>>num[i];
x+=num[i];
}
cin>>m;
if(m>n){
sum=x-(m-n)*d;
}
else if(m==n){
sum=x;
}
else if(m<n){
sort(num,num+n);
for(i=0;i<m;i++){
sum+=num[i];
}
}
cout<<sum<<endl;
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: