G - Woodcutters

来源:互联网 发布:淘宝直播卖的衣服好么 编辑:程序博客网 时间:2024/05/16 07:24
G - Woodcutters
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit Status Practice CodeForces 545C

Description

Little Susie listens to fairy tales before bed every day. Today's fairy tale was about wood cutters and the little girl immediately started imagining the choppers cutting wood. She imagined the situation that is described below.

There are n trees located along the road at points with coordinates x1, x2, ..., xn. Each tree has its height hi. Woodcutters can cut down a tree and fell it to the left or to the right. After that it occupies one of the segments [xi - hi, xi] or [xi;xi + hi]. The tree that is not cut down occupies a single point with coordinate xi. Woodcutters can fell a tree if the segment to be occupied by the fallen tree doesn't contain any occupied point. The woodcutters want to process as many trees as possible, so Susie wonders, what is the maximum number of trees to fell.

Input

The first line contains integer n (1 ≤ n ≤ 105) — the number of trees.

Next n lines contain pairs of integers xi, hi (1 ≤ xi, hi ≤ 109) — the coordinate and the height of the і-th tree.

The pairs are given in the order of ascending xi. No two trees are located at the point with the same coordinate.

Output

Print a single number — the maximum number of trees that you can cut down by the given rules.

Sample Input

Input
51 22 15 1010 919 1
Output
3
Input
51 22 15 1010 920 1
Output
4

Hint

In the first sample you can fell the trees like that:

  • fell the 1-st tree to the left — now it occupies segment [ - 1;1]
  • fell the 2-nd tree to the right — now it occupies segment [2;3]
  • leave the 3-rd tree — it occupies point 5
  • leave the 4-th tree — it occupies point 10
  • fell the 5-th tree to the right — now it occupies segment [19;20]

In the second sample you can also fell 4-th tree to the right, after that it will occupy segment [10;19].






/*
动态规划了;
最优选择;
*/
#include <iostream>
#include<cstdio>
using namespace std;
int a[100100],b[100100];//树的位置和高度;
int main()
{
       int n;
        int i,j,s=0;
        scanf("%d",&n);
        for(i=0;i<n;i++)
            scanf("%d%d",&a[i],&b[i]);
        for(i=1;i<n-1;i++)
        {
                if(a[i]-a[i-1]>b[i])
                    s++;//左倒;.先左倒,
                else if(a[i+1]-a[i]>b[i])
                {
                    s++;//右倒;
                    a[i]+=b[i];
                }
        }
        if(n==1)
            printf("1\n");
        else
           printf("%d\n",s+2);//只考虑中间,两端的一定可以倒,
    return 0;
}









0 0
原创粉丝点击