HDU - 3507 Print Article【斜率优化】

Time limit 3000 ms
Memory limit 65536 kB

Zero has an old printer that doesn’t work well sometimes. As it is antique, he still like to use it to print articles. But it is too old to work for a long time and it will certainly wear and tear, so Zero use a cost to evaluate this degree.
One day Zero want to print an article which has N words, and each word i has a cost Ci to be printed. Also, Zero know that print k words in one line will cost
在这里插入图片描述
M is a const number.
Now Zero want to know the minimum cost in order to arrange the article perfectly.

Input

There are many test cases. For each test case, There are two numbers N and M in the first line (0 ≤ n ≤ 500000, 0 ≤ M ≤ 1000). Then, there are N numbers in the next 2 to N + 1 lines. Input are terminated by EOF.

Output

A single number, meaning the mininum cost to print the article.


题目分析

好久没写斜率优化了,找了道水题练练手

d p [ i ] dp[i] dp[i]表示打印前 i i i个单词的最小花费
d p [ i ] = d p [ j ] + ( s u m [ i ] − s u m [ j ] ) 2 + M dp[i]=dp[j]+(sum[i]-sum[j])^2+M dp[i]=dp[j]+(sum[i]sum[j])2+M其中 s u m sum sum c i c_i ci的前缀和

移向变成 d p [ j ] + s u m [ j ] 2 = 2 ∗ s u m [ i ] ∗ s u m [ j ] − s u m [ i ] 2 − M + d p [ i ] dp[j]+sum[j]^2=2*sum[i]*sum[j]-sum[i]^2-M+dp[i] dp[j]+sum[j]2=2sum[i]sum[j]sum[i]2M+dp[i]
按照斜率优化的套路维护下凸壳即可

这题好像很卡精度啊,不把斜率计算变成乘法一直WA =_=


#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<queue>
#include<map>
using namespace std;
typedef long long lt;
typedef double dd;
#define sqr(x) ((x)*(x))

int read()
{
    int f=1,x=0;
    char ss=getchar();
    while(ss<'0'||ss>'9'){if(ss=='-')f=-1;ss=getchar();}
    while(ss>='0'&&ss<='9'){x=x*10+ss-'0';ss=getchar();}
    return f*x;
}

const int maxn=500010;
int n,M;
lt sum[maxn],dp[maxn];
int q[maxn],ll,rr;

lt qX(int j){ return sum[j];}
lt qY(int j){ return dp[j]+sqr(sum[j]);}

lt query(int i,int j){ 
	return dp[j]+sqr(sum[i]-sum[j])+M;
}

int main()
{
    while(scanf("%d%d",&n,&M)!=EOF)
	{
		for(int i=1;i<=n;++i) 
		sum[i]=read()+sum[i-1];
		
		ll=rr=1;
		for(int i=1;i<=n;++i)
		{
			while( ll<rr&& (qY(q[ll+1])-qY(q[ll]))<=2*sum[i]*(qX(q[ll+1])-qX(q[ll])) ) ++ll;
			dp[i]=query(i,q[ll]);
			while(ll<rr&& (qY(q[rr])-qY(q[rr-1]))*(qX(i)-qX(q[rr]))>=(qY(i)-qY(q[rr]))*(qX(q[rr])-qX(q[rr-1])) ) --rr;
			q[++rr]=i;
		}
	
		printf("%d\n",dp[n]);
	}
	return 0;
}

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值