CF1203E.Boxers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n boxers, the weight of the i -th boxer is ai . Each of them can change the weight by no more than 1 before the competition (the weight cannot become equal to zero, that is, it must remain positive). Weight is always an integer number.
It is necessary to choose the largest boxing team in terms of the number of people, that all the boxers' weights in the team are different (i.e. unique).
Write a program that for given current values ai will find the maximum possible number of boxers in a team.
It is possible that after some change the weight of some boxer is 150001 (but no more).
输入格式
The first line contains an integer n ( 1≤n≤150000 ) — the number of boxers. The next line contains n integers a1,a2,…,an , where ai ( 1≤ai≤150000 ) is the weight of the i -th boxer.
输出格式
Print a single integer — the maximum possible number of people in a team.
输入输出样例
输入#1
4 3 2 4 1
输出#1
4
输入#2
6 1 1 1 4 4 4
输出#2
5
说明/提示
In the first example, boxers should not change their weights — you can just make a team out of all of them.
In the second example, one boxer with a weight of 1 can be increased by one (get the weight of 2 ), one boxer with a weight of 4 can be reduced by one, and the other can be increased by one (resulting the boxers with a weight of 3 and 5 , respectively). Thus, you can get a team consisting of boxers with weights of 5,4,3,2,1 .