Pro.ID21913 TitleJack's struggle Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21913 AC18 Submit53 Ratio33.96% 时间&空间限制描述A team of airborne troops are ready to complete some missions. The battlefield was divided into a grid of n*n, this team can be air-dropped at any place on time 0. In every time unit after landing, they can go to the grid left, right, up or down to the current grid, or they can just stay. On their mission list, each mission is described as three integers: t, r and c, represents a task that must be completed exactly at time t on the grid (r, c). Obviously, with limits of time, not all missions can be done. The captain, Jack, struggling making decisions, wants to know how many missions they can complete at most. 输入The input contains serveral cases: For each case: * The first line contains two integers n and m, 1 ≤ n ≤ 1000, 1 ≤ m ≤ 10000, n represents the size of the battlefield and m represents the number of missions on the list. * Following m lines, each one describes a mission using three integers, t, r and c. No two missions have the same t, r and c. The input is terminated by n=m=0. 输出Description A team of airborne troops are ready to complete some missions. The battlefield was divided into a grid of n*n, this team can be air-dropped at any place on time 0. In every time unit after landing, they can go to the grid left, right, up or down to the current grid, or they can just stay. On their mission list, each mission is described as three integers: t, r and c, represents a task that must be completed exactly at time t on the grid (r, c). Obviously, with limits of time, not all missions can be done. The captain, Jack, struggling making decisions, wants to know how many missions they can complete at most. Input The input contains serveral cases: For each case: * The first line contains two integers n and m, 1 ≤ n ≤ 1000, 1 ≤ m ≤ 10000, n represents the size of the battlefield and m represents the number of missions on the list. * Following m lines, each one describes a mission using three integers, t, r and c. No two missions have the same t, r and c. The input is terminated by n=m=0. Output One integer in one line represents the maximum number of mission that can be completed. Sample Input 2 2 Sample Output 1 Source 样例输入2 2 样例输出1 作者 |