#P3512. [POI2010] PIL-Pilots

[POI2010] PIL-Pilots

题目描述

In the Byteotian Training Centre, the pilots prepare for missions requiring extraordinary precision and control.

One measure of a pilot's capability is the duration he is able to fly along a desired route without deviating too much - simply put, whether he can fly steadily. This is not an easy task, as the simulator is so sensitive that it registers even a slightest move of the yoke1.

At each moment the simulator stores a single parameter describing the yoke's position.

Before each training session a certain tolerance level is set.

The pilots' task then is to fly as long as they can in such a way that all the yoke's position measured during the flight differ by at most . In other words, a fragment of the flight starting at time and ending at time is within tolerance level if the position measurements, starting with -th and ending with -th, form such a sequence that for all elements of this sequence, the inequality holds.

Your task is to write a program that, given a number and the sequence of yoke's position measurements, determines the length of the longest fragment of the flight that is within the tolerance level .

给定 n,kn, k 和一个长度为 nn 的序列,求最长的最大值最小值相差不超过 kk 的子段。

输入格式

In the first line of the standard input two integers are given, and (, ), separated by a single space, denoting the tolerance level and the number of yoke's position measurements taken.

The second line gives those measurements, separated by single spaces. Each measurement is an integer from the interval from to .

第一行两个由空格隔开的整数 k,nk, n0k2×1090\leq k\leq 2\times 10 ^ 91n3×1061\leq n\leq 3\times 10 ^ 6),kk 表示设定的极差的最大值,nn 表示序列的长度。

第二行 nn 个由空格隔开的整数 aia_i1ai2×1091\leq a_i\leq 2\times 10^ 9)表示序列。

输出格式

Your program should print a single integer to the standard output:

the maximum length of a fragment of the flight that is within the given tolerance level.

一个整数表示符合条件的子段的长度最大值。

3 9
5 1 3 5 8 6 6 9 10
4

提示

样例解释:5,8,6,65, 8, 6, 68,6,6,98, 6, 6, 9 都是满足条件长度为 44 的子段。