100722: [AtCoder]ABC072 C - Together

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $300$ points

Problem Statement

You are given an integer sequence of length $N$, $a_1,a_2,...,a_N$.

For each $1≤i≤N$, you have three choices: add $1$ to $a_i$, subtract $1$ from $a_i$ or do nothing.

After these operations, you select an integer $X$ and count the number of $i$ such that $a_i=X$.

Maximize this count by making optimal choices.

Constraints

  • $1≤N≤10^5$
  • $0≤a_i<10^5 (1≤i≤N)$
  • $a_i$ is an integer.

Input

The input is given from Standard Input in the following format:

$N$
$a_1$ $a_2$ .. $a_N$

Output

Print the maximum possible number of $i$ such that $a_i=X$.


Sample Input 1

7
3 1 4 1 5 9 2

Sample Output 1

4

For example, turn the sequence into $2,2,3,2,6,9,2$ and select $X=2$ to obtain $4$, the maximum possible count.


Sample Input 2

10
0 1 2 3 4 5 6 7 8 9

Sample Output 2

3

Sample Input 3

1
99999

Sample Output 3

1

Input

题意翻译

# 题目 给出一个长度为N,a1,a2,...,aN的整数序列。 对于每个1≤i≤N,您有三个选择:1.将1添加到ai, 2.从ai减去1 3.不执行任何操作。 在这些操作之后,您选择一个整数X并计算i的数量,使得ai = X. 通过做出最佳选择来最大化这一数量。 # 限制 1≤x≤10^5 0≤ai≤10^5 且ai是整数 # 输出 输出最大可能的数 使ai = x # 样例输入 7 3 1 4 1 5 9 2 10 0 1 2 3 4 5 6 7 8 9 # 样例输出 4 3 感谢@牧星 提供的翻译

加入题单

算法标签: