I - Sereja and Coat Rack

简介: I - Sereja and Coat Rack


 

I - Sereja and Coat Rack

Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Submit Status

Description

Sereja owns a restaurant for n people. The restaurant hall has a coat rack with n hooks. Each restaurant visitor can use a hook to hang his clothes on it. Using the i-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 the m guests is visiting Sereja's restaurant tonight.

Input

The first line contains two integers n and d(1 ≤ n, d ≤ 100). The next line contains integers a1, a2, ..., an(1 ≤ ai ≤ 100). The third line contains integer m(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 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.

 

 

 

 

题目分析:

没有什么难度,意思就是

2 1

2 1

10

一个小饭馆有2个衣架如果有客人来没有衣架了那么老板就要给客人1块钱补偿

第二行   是每个衣架使用的费用,

第三行就是  来的客人总数

注意:注意先来的客人肯定是选最便宜的衣架了,你懂的,如果是你你不选便宜的吗?

 

 

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int main()
{
  int n,k,m;
  int a[1100];
  while(~scanf("%d%d",&n,&k))
  {
    for(int i=0;i<n;i++)
      scanf("%d",&a[i]);
    scanf("%d",&m);
    sort(a,a+n);
//    for(int i=1;i<=n;i++)
//      printf("%d ",a[i]);
//      printf("\n");
    int cost=0;
    if(m<=n)
    {
      for(int i=0;i<m;i++)
        cost+=a[i];
    }
    else
    {
      for(int i=0;i<n;i++)
        cost+=a[i];
      cost-=(m-n)*k; 
    }
    //if(m==0) cost=0;
    printf("%d\n",cost);
  }
  return 0;
}

 

 

 

 

 


目录
相关文章
|
中间件 应用服务中间件 API
Rack相关知识梳理(一)
一、什么是Rack Rack是ruby应用服务器和Rack应用程序之间的接口, 这里面Ruby应用服务器可以是Webrick、thin等,Rack应用程序可以是rails、Sinatra等(其实 现在主流的ruby的Web框架都是基于Rack的)。在上图中,当用户的请求到达应用服务器时,应用服务器会
559 0
|
人工智能
upc 2021秋组队训练赛第三场 2020 Rocky Mountain Regional Contest
upc 2021秋组队训练赛第三场 2020 Rocky Mountain Regional Contest
93 0
Google Earth Engine ——MODIS Terra/Aqua Daily EVI数据
Google Earth Engine ——MODIS Terra/Aqua Daily EVI数据
286 0
Google Earth Engine ——MODIS Terra/Aqua Daily EVI数据
|
中间件
Rack相关知识梳理(三)
Rack为编写Web应用以及Web框架提供了很多便利的工具,那么这一节,我们实现一个最简单的Web框架。 一、Web框架应该具备什么功能 对request和response的存取 路由:根据不同URL执行不同程序 能够处理cookies 能够存取session 能够生成日志 ...... 看上去挺麻
318 0
|
设计模式 中间件 应用服务中间件
Rack相关知识梳理(二)
一、Rack中间件 1、什么是中间件 中间件其实就是Ruby应用服务器和Rack应用程序之间执行的代码 2、一个简单的例子 $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rack' require 'decorator' my_app = l
264 0
|
物联网 芯片 SoC
ZigBee Silicon Labs/Ember EFR32MG 2.3 浅谈EM与EFR
在ZigBee方面,Silicon Labs(以后都简称Silabs)公司推出了非常完整的SoC解决方案,主要分为两个系列:EM和EFR。 一、EM系列 关于EM系列,其实是Ember的简写,取自于Ember的前两个字母。
3607 0
|
物联网 SoC 开发者
ZigBee Silicon Labs/Ember EFR32MG 2.2 初识Silicon Labs ZigBee
一、网状网片上系统(SoC) 在Silicon Labs(以后都简称Silabs)公司官网上,可以看到Silabs公司所有的ZigBee系列SoC,如下图所示: 从上图中可以看出,Silabs推出的ZigBee SoC解决方案主要分为两个系列:EM 和 EFR。
1859 0
|
安全 网络架构 iOS开发