시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 128 MB81629420635.702%

문제

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 t 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 t. In other words, a fragment of the flight starting at time i and ending at time j is within tolerance level t if the position measurements, starting with i-th and ending with j-th, form such a sequence ai,…,aj  that for all elements ak,al of this sequence, the inequality |ak-al| ≤ t 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 t.

1a device used for piloting in an aircraft

입력

In the first line of the standard input two integers are given, t and n (0 ≤ t ≤ 2,000,000,000, 1 ≤ n ≤ 3,000,000), 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 1 to 2,000,000,000.

출력

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.

예제 입력 1

3 9
5 1 3 5 8 6 6 9 10

예제 출력 1

4

출처

Olympiad > Polish Olympiad in Informatics > POI 2009/2010 > Stage 3 8번

  • 데이터를 추가한 사람: cgiosy
  • 문제의 오타를 찾은 사람: chpark1111