|
||||||||||
Prison BreakTime Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 2255 Accepted Submission(s): 731 Problem Description To save Sara, Michael Scofield was captured by evil policemen and he was arrested in Prison again. As is known to all, nothing can stop Michael, so Prison Break continues. The prison consists of many circular walls. These walls won't intersect or tangent to each other. Now Michael is arrested in one of the deepest rooms, and he wants to know how many walls he has to break at least for running out. In figure 1, Michael has to break 3 walls at least and in figure 2, 2 walls are needed. Input There will be multiple test cases (no more than 10) in a test data. For each test case, the first line contains one number: n (1<=n<=50,000) indicating the total number of circular walls. Then n lines follow, each line contains three integers x, y, r. (x,y) indicates the center of circular wall and r indicates the radius of the wall. -100,000<=x,y<=100,000 1 <= r <= 100,000 The input ends up with EOF. Output The least number of walls to break for running out. Sample Input
Sample Output
Source | ||||||||||
|