E. Boxers(贪心)

E. Boxers(贪心)

There are nn boxers, the weight of the ii-th boxer is aiai. 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 ​aiai 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).

Input

The first line contains an integer nn (1≤n≤1500001≤n≤150000) — the number of boxers. The next line contains nn integers a1,a2,…,ana1,a2,…,an, where aiai (1≤ai≤1500001≤ai≤150000) is the weight of the ii-th boxer.

Output

Print a single integer — the maximum possible number of people in a team.

Examples

input

4
3 2 4 1

output

4

input

6
1 1 1 4 4 4

output

5

Note

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.

 

题意:有n个拳击运动员,每个人在比赛前可以改变一斤体重,询问比赛时最多能带几个不同体重的运动员。

思路:先排序,从大到小,优先想加一斤体重,再不变,最后考虑减一斤体重。

 

代码:

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
const int N = 2e5+10;

int via[N];
int a[N];
int n;

int main()
{
    int i,j,k;
	scanf("%d", &n);
    for ( i=1; i<=n; i++ ) {
        cin >> a[i];
    }
    sort(a+1,a+n+1,greater<int>());
    int ans = 0;
    for ( i=1; i<=n; i++ ) {
        if ( via[a[i]+1]==0 ) {
            via[a[i]+1] = 1;
            ans ++;
        }
        else if ( via[ a[i] ]==0 ) {
            via[ a[i] ] = 1;
            ans ++;
        }
        else if ( via[ a[i]-1 ]==0 && a[i]-1>0 ) {
            via[ a[i]-1 ] = 1;
            ans ++;
        }
    }
    cout << ans << endl;

    return 0;
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值