Pro.ID21646 TitleExploration Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21646 AC0 Submit0 Ratio- 时间&空间限制描述Bessie is traveling on a road teeming with interesting landmarks. The road is labeled just like a number line, and Bessie starts at the "origin" ( x = 0 ). A total of N ( 1 ≤ N ≤ 50,000 ) landmarks are located at points x1, x2, ..., xN ( -100,000 ≤ xi ≤ 100,000 ). Bessie wants to visit as many landmarks as possible before sundown, which occurs in T ( 1 ≤ T ≤ 1,000,000,000 ) minutes. She travels 1 distance unit in 1 minute. Bessie will visit the landmarks in a particular order. Since the landmarks closer to the origin are more important to Farmer John, she always heads for the unvisited landmark closest to the origin. No two landmarks will be the same distance away from the origin. Help Bessie determine the maximum number of landmarks she can visit before the day ends. 输入* Line 1: Two space-separated integers: T and N * Lines 2..N+1: Line i+1 contains a single integer that is the location of the i-th landmark: xi 输出Description Bessie is traveling on a road teeming with interesting landmarks. The road is labeled just like a number line, and Bessie starts at the "origin" ( x = 0 ). A total of N ( 1 ≤ N ≤ 50,000 ) landmarks are located at points x1, x2, ..., xN ( -100,000 ≤ xi ≤ 100,000 ). Bessie wants to visit as many landmarks as possible before sundown, which occurs in T ( 1 ≤ T ≤ 1,000,000,000 ) minutes. She travels 1 distance unit in 1 minute. Bessie will visit the landmarks in a particular order. Since the landmarks closer to the origin are more important to Farmer John, she always heads for the unvisited landmark closest to the origin. No two landmarks will be the same distance away from the origin. Help Bessie determine the maximum number of landmarks she can visit before the day ends. Input * Line 1: Two space-separated integers: T and N * Lines 2..N+1: Line i+1 contains a single integer that is the location of the i-th landmark: xi Output * Line 1: The maximum number of landmarks Bessie can visit. Sample Input 25 5 Sample Output 4 Source 样例输入25 5 样例输出4 作者 |