码迷,mamicode.com
首页 > Windows程序 > 详细

【文文殿下】[APIO2010]特别行动队 题解

时间:2019-01-17 23:42:24      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:name   pac   end   code   std   clu   cin   using   for   

基本上是一个斜率优化裸题了

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e6+10;

ll s[maxn],x[maxn],n,a,b,c,f[maxn],ss[maxn];
int q[maxn];
double slope(int l,int r) {
    double tmp1 = f[r]-b*s[r]+a*ss[r]-f[l]+b*s[l]-a*ss[l];
    double tmp2 = s[r]-s[l];
    return tmp1/tmp2;
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);cout.tie(0);
    cin>>n>>a>>b>>c;
    for(int i = 1;i<=n;++i) {
        cin>>x[i];
        s[i]=s[i-1]+x[i];
        ss[i]=s[i]*s[i];
    }
    int l = 0,r=0;
    for(int i = 1;i<=n;++i) {
        while(l<r&&slope(q[l],q[l+1])>2*a*s[i]) ++l;
        int j = q[l];
        f[i]=f[j]+a*ss[i]-2*a*s[i]*s[j]+a*ss[j]+b*s[i]-b*s[j]+c;
        while(l<r&&slope(q[r-1],q[r])<slope(q[r],i)) --r;
        q[++r]=i;
    }
    cout<<f[n]<<endl;
    return 0;
}

【文文殿下】[APIO2010]特别行动队 题解

标签:name   pac   end   code   std   clu   cin   using   for   

原文地址:https://www.cnblogs.com/Syameimaru/p/10284855.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!