【BZOJ】【P3156】【防御准备】【题解】【斜率优化】

本文详细介绍了BZOJ在线评测系统中编号为P3156的题目解法,重点探讨了如何使用动态规划和斜率优化来解决该问题。虽然作者提到了自己只能用nlogn的复杂度通过,但主要思路集中在如何利用斜率优化来降低时间复杂度。
摘要由CSDN通过智能技术生成

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=3156

dp方程:

reverse(a)

f[1]=a[1]

f[i]=a[i]+min(f[j]+(i-j)*(i-j-1)/2)

f[i]=a[i]+(i*i-i)/2+min(f[j]+(j*j+j)/2-ij)

是斜率优化

呃,我只会nlogn的凸包+三分怎么破……

Code:

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const int maxn=1e6+5;
struct point{
	LL x,y;
	point(LL _x=0,LL _y=0):x(_x),y(_y){}
	LL operator*(point oth)const{return x*oth.y-y*oth.x;}
	LL operator^(point oth)const{return x*oth.x+y*oth.y;}
	point operator-(point oth)const{return point(x-oth.x,y-oth.y);}
};
LL n,a[maxn];
LL f[maxn];
LL getint(){
	LL res=0;char c=getchar();
	while(!isdigit(c))c=getchar();
	while(isdigit(c))res=res*10+c-'0',c=getchar();
	return res;
}
struct CH{
	point ch[maxn];
	int m;
	CH():m(0){}
	void push_back(point p){
		while(m>1&&(ch[m-1]-ch[m-2])*(p-ch[m-1])<=0)m--;
		ch[m++]=p;
	}
	LL Qmin(point p){
		int l=0,r=m-1;
		while(r-l>2){
			int mid1=l+(r-l)/3;
			int mid2=r-(r-l)/3;
			if((p^ch[mid1])<(p^ch[mid2]))
				r=mid2;
			else l=mid1;
		}LL ans=1LL<<61;
		for(int i=l;i<=r;i++)ans=min(ans,p^ch[i]);
		return ans;
	}
}C;
int main(){
	n=getint();
	for(LL i=1;i<=n;i++)a[i]=getint();
	reverse(a+1,a+1+n);n++;
	f[1]=a[1];C.push_back(point(1,f[1]+1));
	for(LL i=2;i<=n;i++){
		f[i]=1LL<<61;
		f[i]=C.Qmin(point(-i,1))+(LL)a[i]+(LL)((LL)i*i-i)/2;
		C.push_back(point(i,f[i]+(LL)(i*i+i)/2));	
	}cout<<min(f[n],f[n-1])<<endl;	
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值