codeforces 559E Gerald and Path

E. Gerald and Path
time limit per test4 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
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.

Input
The first line contains integer n (1 ≤ n ≤ 100) — the number of spotlights. Each of the n lines contains two space-separated integers, ai and li (0 ≤ ai ≤ 108, 1 ≤ li ≤ 108). Number ai shows how much further the i-th spotlight to the north, and number li shows the length of the segment it illuminates.

It is guaranteed that all the ai’s are distinct.

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

Examples
input
3
1 1
2 2
3 3
output
5
input
4
1 2
3 3
4 3
6 2
output
9


【分析】
根本不会做系列DP。
http://blog.csdn.net/PhilipsWeng/article/details/50767943?locationNum=15


【代码】

//codeforces 杰拉德和路径
#include<bits/stdc++.h>
#define inf 1e9
#define ll long long
#define M(a) memset(a,0,sizeof a)
#define fo(i,j,k) for(i=j;i<=k;i++)
using namespace std;
const int mxn=105;
int n,ans;
int dp[mxn][mxn][2];
struct node
{
    int w,len;
}a[mxn];
inline bool comp(node u,node v)
{
    return u.w<v.w;
}
int main()
{
    int i,j,k,d,p;
    scanf("%d",&n);
    fo(i,1,n)
    {
        scanf("%d",&a[i].w);
        scanf("%d",&a[i].len);
    }
    sort(a+1,a+n+1,comp);
    a[0].w=-inf;
    fo(i,0,n)
      fo(j,0,i)
        fo(p,0,1)
        {
            int A=0,B=0,mx=-inf;
            ans=max(ans,dp[i][j][p]);
            int pre=a[j].w+p*a[j].len;
            fo(k,i+1,n)
              fo(d,0,1)
              {
                  int nxt=a[k].w+d*a[k].len;
                  if(nxt>mx) mx=nxt,A=k,B=d;
                  dp[k][A][B]=max(dp[k][A][B],dp[i][j][p]+min(a[k].len,nxt-pre)+mx-nxt);
              }
        }
    printf("%d\n",ans);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值