http://codeforces.com/contest/1203/problem/E
E. Boxers
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
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).
Input
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.
Output
Print a single integer — the maximum possible number of people in a team.
Examples
inputCopy
4
3 2 4 1
outputCopy
4
inputCopy
6
1 1 1 4 4 4
outputCopy
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 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.
给一个长度为n的数组,每个数组可以加一减一或者不变,要使不同数字最多,从前往后遍历,先看x-1有没有数字,有的话-1,没有的话再看x,同理最后看x+1.
#include<stdio.h>
#include<algorithm>
using namespace std;
int a[150005],vis[150005],n;
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++)
scanf("%d",a+i);
sort(a+1,a+n+1);
int ans=0;
for(int i=1;i<=n;i++)
{
if(vis[a[i]-1]==0&&a[i]!=1)
{
ans++;
vis[a[i]-1]=1;
continue;
}
else if(vis[a[i]]==0)
{
ans++;
vis[a[i]]=1;
continue;
}
else if(vis[a[i]+1]==0)
{
ans++;
vis[a[i]+1]=1;
continue;
}
}
printf("%d\n",ans);
}