E51【模板】斜率优化DP 打印文章

视频链接:E51【模板】斜率优化DP 打印文章_哔哩哔哩_bilibili

 

HDU3507 Print Article(打印文章)

#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;

typedef long long LL;
const int N = 500010;
int n,m,q[N];
LL s[N],f[N];

double slope(int i,int j){ 
  return (double)(f[i]+s[i]*s[i]-f[j]-s[j]*s[j])
                /(s[i]==s[j]?1e-9:s[i]-s[j]);
}
int main(){
  while(~scanf("%d%d",&n,&m)){
    for(int i=1;i<=n;i++) scanf("%lld",&s[i]),s[i]+=s[i-1];
    
    int h=1,t=0;
    for(int i=1;i<=n;i++){
      while(h<t && slope(i-1,q[t])<=slope(q[t],q[t-1])) t--;
      q[++t]=i-1;      
      while(h<t && slope(q[h+1],q[h])<=2*s[i]) h++;
      int j=q[h];
      f[i]=f[j]+(s[i]-s[j])*(s[i]-s[j])+m;
    }
    printf("%lld\n",f[n]);
  }
}
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;

typedef long long LL;
const int N = 500010;
int n,m,q[N];
LL s[N],f[N];

LL dy(int i,int j){return f[i]+s[i]*s[i]-f[j]-s[j]*s[j];}
LL dx(int i,int j){return s[i]-s[j];}
int main(){
  while(~scanf("%d%d",&n,&m)){
    for(int i=1;i<=n;i++)scanf("%lld",&s[i]),s[i]+=s[i-1];

    int h=1,t=0;
    for(int i=1;i<=n;i++){
      while(h<t && dy(i-1,q[t])*dx(q[t],q[t-1])
                 <=dx(i-1,q[t])*dy(q[t],q[t-1])) t--;
      q[++t]=i-1;      
      while(h<t && dy(q[h+1],q[h])
                 <=dx(q[h+1],q[h])*2*s[i]) h++;
      int j=q[h];
      f[i]=f[j]+(s[i]-s[j])*(s[i]-s[j])+m;
    }
    printf("%lld\n",f[n]);
  }
}
posted @ 2023-05-04 16:06  董晓  阅读(383)  评论(0编辑  收藏  举报