CF1203E.Boxers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are nn boxers, the weight of the ii -th boxer is aia_i . Each of them can change the weight by no more than 11 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 ​ aia_i will find the maximum possible number of boxers in a team.

It is possible that after some change the weight of some boxer is 150001150001 (but no more).

输入格式

The first line contains an integer nn ( 1n1500001 \le n \le 150000 ) — the number of boxers. The next line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n , where aia_i ( 1ai1500001 \le a_i \le 150000 ) is the weight of the ii -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 11 can be increased by one (get the weight of 22 ), one boxer with a weight of 44 can be reduced by one, and the other can be increased by one (resulting the boxers with a weight of 33 and 55 , respectively). Thus, you can get a team consisting of boxers with weights of 5,4,3,2,15, 4, 3, 2, 1 .

首页