Algorithm


A. Cottage Village
time limit per test
2 seconds
memory limit per test
64 megabytes
input
standard input
output
standard output

A new cottage village called «Flatville» is being built in Flatland. By now they have already built in «Flatville» n square houses with the centres on the Оx-axis. The houses' sides are parallel to the coordinate axes. It's known that no two houses overlap, but they can touch each other.

The architect bureau, where Peter works, was commissioned to build a new house in «Flatville». The customer wants his future house to be on the Оx-axis, to be square in shape, have a side t, and touch at least one of the already built houses. For sure, its sides should be parallel to the coordinate axes, its centre should be on the Ox-axis and it shouldn't overlap any of the houses in the village.

Peter was given a list of all the houses in «Flatville». Would you help him find the amount of possible positions of the new house?

Input

The first line of the input data contains numbers n and t (1 ≤ n, t ≤ 1000). Then there follow n lines, each of them contains two space-separated integer numbers: xi ai, where xi — x-coordinate of the centre of the i-th house, and ai — length of its side ( - 1000 ≤ xi ≤ 10001 ≤ ai ≤ 1000).

Output

Output the amount of possible positions of the new house.

Examples
input
Copy
2 2
0 4
6 2
output
Copy
4
input
Copy
2 2
0 4
5 2
output
Copy
3
input
Copy
2 3
0 4
5 2
output
Copy
2
Note

It is possible for the x-coordinate of the new house to have non-integer value.

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <vector>
#include <algorithm>

int main(){

    std::ios_base::sync_with_stdio(false);
    int n, t; std::cin >> n >> t;
    std::vector<std::pair < double, double> > v(n);
    for(int p = 0; p < n; p++){
        double x, a; std::cin >> x >> a;
        v[p] = std::make_pair(x - a / 2.0, x + a/2.0);
    }
    sort(v.begin(), v.end());
    
    int count(2);
    for(int p = 1; p < n; p++){
        double diff = v[p].first - v[p - 1].second;
        count += 2 * (diff > t) + (diff == t);
    }

    std::cout << count << std::endl;

    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
2 2
0 4
6 2

Output

x
+
cmd
4
Advertisements

Demonstration


Codeforces Solution-A. Cottage Village-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+