Pro.ID21567 TitleTractor Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21567 AC2 Submit4 Ratio50.00% 时间&空间限制描述After a long day of work, Farmer John completely forgot that he left his tractor in the middle of the field. His cows, always up to no good, decide to play a prank of Farmer John: they deposit N bales of hay (1≤ N ≤ 50,000) at various locations in the field, so that Farmer John cannot easily remove the tractor without first removing some of the bales of hay. The location of the tractor, as well as the locations of the N hay bales, are all points in the 2D plane with integer coordinates in the range 1..1000. There is no hay bale located at the initial position of the tractor. When Farmer John drives his tractor, he can only move it in directions that are parallel to the coordinate axes (north, south, east, and west), and it must move in a sequence of integer amounts. For example, he might move north by 2 units, then east by 3 units. The tractor cannot move onto a point occupied by a hay bale. Please help Farmer John determine the minimum number of hay bales he needs to remove so that he can free his tractor (that is, so he can drive his tractor to the origin of the 2D plane). 输入多测试。 * Line 1: Three space-separated integers: N, and the (x, y) starting location of the tractor. * Lines 2..1+N: Each line contains the (x, y) coordinates of a bale of hay. 输出Description After a long day of work, Farmer John completely forgot that he left his tractor in the middle of the field. His cows, always up to no good, decide to play a prank of Farmer John: they deposit N bales of hay (1≤ N ≤ 50,000) at various locations in the field, so that Farmer John cannot easily remove the tractor without first removing some of the bales of hay. The location of the tractor, as well as the locations of the N hay bales, are all points in the 2D plane with integer coordinates in the range 1..1000. There is no hay bale located at the initial position of the tractor. When Farmer John drives his tractor, he can only move it in directions that are parallel to the coordinate axes (north, south, east, and west), and it must move in a sequence of integer amounts. For example, he might move north by 2 units, then east by 3 units. The tractor cannot move onto a point occupied by a hay bale. Please help Farmer John determine the minimum number of hay bales he needs to remove so that he can free his tractor (that is, so he can drive his tractor to the origin of the 2D plane). Input 多测试。 * Line 1: Three space-separated integers: N, and the (x, y) starting location of the tractor. * Lines 2..1+N: Each line contains the (x, y) coordinates of a bale of hay. Output * Line 1: The minimum number of bales of hay Farmer John must remove in order to open up a path for his tractor to move to the origin. Sample Input 7 6 3 Sample Output 1 Hint INPUT DETAILS: The tractor starts at (6,3). There are 7 bales of hay, at positions (6,2), (5,2), (4,3), (2,1), (7,3), (5,4), and (6,4). OUTPUT DETAILS: Farmer John only needs to remove one bale of hay to free his tractor. Source 样例输入7 6 3 样例输出1 提示INPUT DETAILS: The tractor starts at (6,3). There are 7 bales of hay, at positions (6,2), (5,2), (4,3), (2,1), (7,3), (5,4), and (6,4). OUTPUT DETAILS: Farmer John only needs to remove one bale of hay to free his tractor. |