atcoder#KEYENCE2020B. Robot Arms
Robot Arms
Score : points
Problem Statement
In a factory, there are robots placed on a number line. Robot is placed at coordinate and can extend its arms of length in both directions, positive and negative.
We want to remove zero or more robots so that the movable ranges of arms of no two remaining robots intersect. Here, for each (), the movable range of arms of Robot is the part of the number line between the coordinates and , excluding the endpoints.
Find the maximum number of robots that we can keep.
Constraints
- ()
- ()
- If , .
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum number of robots that we can keep.
4
2 4
4 3
9 3
100 5
3
By removing Robot , we can keep the other three robots.
2
8 20
1 10
1
5
10 1
2 1
4 1
6 1
8 1
5