博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 215A A.Sereja and Coat Rack
阅读量:5340 次
发布时间:2019-06-15

本文共 2387 字,大约阅读时间需要 7 分钟。

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 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 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 
#include
#include
#include
#include
int sum;int n,d,m;int map[210];int main(){ while(~scanf("%d%d",&n,&d)) { memset(map,0,sizeof(map)); for(int i = 1;i <= n;i ++) scanf("%d",&map[i]); int temp; for(int i = 1; i<= n;i ++) for(int j = i + 1;j <= n;j ++) { if(map[i] > map[j]) { temp = map[i]; map[i] = map[j]; map[j] = temp; } } scanf("%d",&m); sum = 0; for(int i = 1;i <= m;i ++) { if(map[i] == 0) sum -= d; else sum += map[i]; } printf("%d\n",sum); } return 0;}

 

 

转载于:https://www.cnblogs.com/GODLIKEING/p/3444759.html

你可能感兴趣的文章
加固linux
查看>>
Hyper-V虚拟机上安装一个图形界面的Linux系统
查看>>
【Crash Course Psychology】2. Research & Experimentation笔记
查看>>
关于 linux 的 limit 的设置
查看>>
MTK笔记
查看>>
fat32转ntfs ,Win7系统提示对于目标文件系统文件过大解决教程
查看>>
shell cat 合并文件,合并数据库sql文件
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>
struts1和struts2的区别
查看>>
Redis常用命令
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
套接口和I/O通信
查看>>
阿里巴巴面试之利用两个int值实现读写锁
查看>>
浅谈性能测试
查看>>
Winform 菜单和工具栏控件
查看>>
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>
巧用Win+R
查看>>
浅析原生js模仿addclass和removeclass
查看>>