CF559E.Gerald and Path

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The main walking trail in Geraldion is absolutely straight, and it passes strictly from the north to the south, it is so long that no one has ever reached its ends in either of the two directions. The Geraldionians love to walk on this path at any time, so the mayor of the city asked the Herald to illuminate this path with a few spotlights. The spotlights have already been delivered to certain places and Gerald will not be able to move them. Each spotlight illuminates a specific segment of the path of the given length, one end of the segment is the location of the spotlight, and it can be directed so that it covers the segment to the south or to the north of spotlight.

The trail contains a monument to the mayor of the island, and although you can walk in either directions from the monument, no spotlight is south of the monument.

You are given the positions of the spotlights and their power. Help Gerald direct all the spotlights so that the total length of the illuminated part of the path is as much as possible.

输入格式

The first line contains integer nn ( 1<=n<=1001<=n<=100 ) — the number of spotlights. Each of the nn lines contains two space-separated integers, aia_{i} and lil_{i} ( 0<=ai<=1080<=a_{i}<=10^{8} , 1<=li<=1081<=l_{i}<=10^{8} ). Number aia_{i} shows how much further the ii -th spotlight to the north, and number lil_{i} shows the length of the segment it illuminates.

It is guaranteed that all the aia_{i} 's are distinct.

输出格式

Print a single integer — the maximum total length of the illuminated part of the path.

输入输出样例

  • 输入#1

    3
    1 1
    2 2
    3 3
    

    输出#1

    5
    
  • 输入#2

    4
    1 2
    3 3
    4 3
    6 2
    

    输出#2

    9
    
首页