博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF Soldier and Badges (贪心)
阅读量:7037 次
发布时间:2019-06-28

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

Soldier and Badges
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Colonel has n badges. He wants to give one badge to every of his n soldiers. Each badge has a coolness factor, which shows how much it's owner reached. Coolness factor can be increased by one for the cost of one coin.

For every pair of soldiers one of them should get a badge with strictly higher factor than the second one. Exact values of their factors aren't important, they just need to have distinct factors.

Colonel knows, which soldier is supposed to get which badge initially, but there is a problem. Some of badges may have the same factor of coolness. Help him and calculate how much money has to be paid for making all badges have different factors of coolness.

Input

First line of input consists of one integer n (1 ≤ n ≤ 3000).

Next line consists of n integers ai (1 ≤ ai ≤ n), which stand for coolness factor of each badge.

Output

Output single integer — minimum amount of coins the colonel has to pay.

Sample test(s)
input
4 1 3 1 4
output
1
input
5 1 2 3 2 5
output
2 可以得出一个简单的结论,如果有相同的几个出现,那么重复这几个一定要改变,而且只能增大,所以把每一个增大到距离它最近的没有用过那个位置。至于为什么这样的贪心策略是对的。。。。我也不知道,感觉罢了。
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #include
14 using namespace std;15 16 const int SIZE = 3005;17 bool HAVE[SIZE + SIZE];18 int N,D_P;19 int S[SIZE],DEAL[SIZE];20 vector
CHOOSE[SIZE];21 22 int main(void)23 {24 scanf("%d",&N);25 for(int i = 0;i < N;i ++)26 {27 scanf("%d",&S[i]);28 if(HAVE[S[i]])29 DEAL[D_P ++] = S[i];30 else31 HAVE[S[i]] = true;32 }33 34 int ans = 0;35 for(int i = 0;i < D_P;i ++)36 for(int j = DEAL[i] + 1;;j ++)37 if(!HAVE[j])38 {39 ans += j - DEAL[i];40 HAVE[j] = true;41 break;42 }43 printf("%d\n",ans);44 45 46 return 0;47 }

 

转载于:https://www.cnblogs.com/xz816111/p/4532051.html

你可能感兴趣的文章
给出一个数组,计算数组中少了哪个数据的实现
查看>>
USB-232卡 配置
查看>>
C#窗体程序皮肤设置
查看>>
T-SQL.字符串函数
查看>>
mysql慢查询
查看>>
offices文件打开乱码问题如何处理
查看>>
抓屏程序
查看>>
many-to-many出现的问题
查看>>
第5章 配置邮箱服务
查看>>
node.js的一个简单框架
查看>>
PPT如何保存还原已剪裁图片的原始版本
查看>>
lnmp一键安装之-php
查看>>
ajax 同步和异步的区别
查看>>
linux shell单引号、双引号及无引号区别(考试题答案系列)--看到这篇文章之后我豁然开朗...
查看>>
排错 zabbix-agent 主机重启无法被监控
查看>>
win10操作系统
查看>>
Mutual Funds引起的一桩桩血案
查看>>
zabbix如何监控nginx性能
查看>>
python3的异常处理
查看>>
linux C 动态共享库编译链接
查看>>