【bzoj3315】[Usaco2013 Nov]Pogo-Cow

来源:互联网 发布:汉聚网络可靠吗 编辑:程序博客网 时间:2024/05/16 19:51

Description

In an ill-conceived attempt to enhance the mobility of his prize cow Bessie, Farmer John has attached a pogo stick to each of Bessie’s legs. Bessie can now hop around quickly throughout the farm, but she has not yet learned how to slow down. To help train Bessie to hop with greater control, Farmer John sets up a practice course for her along a straight one-dimensional path across his farm. At various distinct positions on the path, he places N targets on which Bessie should try to land (1 <= N <= 1000). Target i is located at position x(i), and is worth p(i) points if Bessie lands on it. Bessie starts at the location of any target of her choosing and is allowed to move in only one direction, hopping from target to target. Each hop must cover at least as much distance as the previous hop, and must land on a target. Bessie receives credit for every target she touches (including the initial target on which she starts). Please compute the maximum number of points she can obtain.

一个坐标轴有N个点,每跳到一个点会获得该点的分数,并只能朝同一个方向跳,但是每一次的跳跃的距离必须不小于前一次的跳跃距离,起始点任选,求能获得的最大分数。

Input

  • Line 1: The integer N.

  • Lines 2..1+N: Line i+1 contains x(i) and p(i), each an integer in the range 0..1,000,000.

Output

  • Line 1: The maximum number of points Bessie can receive.

Sample Input

6

5 6

1 1

10 5

7 6

4 8

8 10

INPUT DETAILS: There are 6 targets. The first is at position x=5 and is worth 6 points, and so on.
Sample Output

25

OUTPUT DETAILS: Bessie hops from position x=4 (8 points) to position x=5 (6 points) to position x=7 (6 points) to position x=10 (5 points).

从坐标为4的点,跳到坐标为5的,再到坐标为7和,再到坐标为10的。

题解
n^3 DP很好想,f[i][j]表示从i跳到j的最打得分,转移需再枚举一维k。
考虑优化,我们先枚举中间点i,再往右枚举j,发现可转移k的范围是单调的。
单调队列求最大值即可。

代码

#include<bits/stdc++.h>#define N 500005#define ll long long#define inf 1000000009#define mod 2010516623LLusing namespace std;inline int read(){    int x=0,f=1;char ch=getchar();    while (ch<'0'||ch>'9'){if (ch=='-') f=-1;ch=getchar();}    while (ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar();    return x*f;}int n,ans,f[1005][1005],g[1005][1005];struct node{int x,p;}a[1005];bool cmp1(node a,node b){return a.x<b.x;}bool cmp2(node a,node b){return a.x>b.x;}int main(){    n=read();    for (int i=1;i<=n;i++){a[i].x=read();a[i].p=read();}    sort(a+1,a+n+1,cmp1);    for (int i=1;i<n;i++)    {        int k=i-1,val=a[i].p;        for (int j=i+1;j<=n;j++)        {            while (a[j].x-a[i].x>=a[i].x-a[k].x&&k)            {                val=max(val,f[k][i]);                k--;            }            f[i][j]=val+a[j].p;            ans=max(f[i][j],ans);        }    }    sort(a+1,a+n+1,cmp2);    for (int i=1;i<n;i++)    {        int k=i-1,val=a[i].p;        for (int j=i+1;j<=n;j++)        {            while (a[i].x-a[j].x>=a[k].x-a[i].x&&k)            {                val=max(val,g[k][i]);                k--;            }            g[i][j]=val+a[j].p;            ans=max(g[i][j],ans);        }    }    cout<<ans;    return 0;}
原创粉丝点击