E44 单调队列优化DP 修剪草坪

视频链接:452 单调队列优化DP 修剪草坪_哔哩哔哩_bilibili

LOJ10177 修剪草坪

复制代码
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;

typedef long long LL;
const int N=1e5+10;
int n,k,q[N];
LL w[N],f[N],sum;

int main(){
  cin>>n>>k; k++; //
  for(int i=1;i<=n;i++) cin>>w[i],sum+=w[i];
  
  int h=1,t=0; LL s=1e18;
  for(int i=1;i<=n;i++){
    while(h<=t && f[q[t]]>=f[i-1]) t--;
    q[++t]=i-1;
    if(q[h]<i-k) h++;
    f[i]=f[q[h]]+w[i];
    if(i>n-k) s=min(s,f[i]);
  }
  cout<<sum-s;
}
复制代码
复制代码
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;

typedef long long LL;
const int N=1e5+10;
int n,k,q[N];
LL w[N],f[N],sum;

int main(){
  cin>>n>>k; k++; //
  for(int i=1;i<=n;i++) cin>>w[i],sum+=w[i];
  
  int h=1,t=0; LL s=1e18;
  for(int i=1;i<=n;i++){
    while(h<=t && q[h]<i-k) h++;
    while(h<=t && f[q[t]]>=f[i-1]) t--;
    q[++t]=i-1;
    f[i]=f[q[h]]+w[i];
    if(i>n-k) s=min(s,f[i]);
  }
  cout<<sum-s;
}
复制代码

 

posted @   董晓  阅读(293)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 微软正式发布.NET 10 Preview 1:开启下一代开发框架新篇章
· 没有源码,如何修改代码逻辑?
· PowerShell开发游戏 · 打蜜蜂
· 在鹅厂做java开发是什么体验
· WPF到Web的无缝过渡:英雄联盟客户端的OpenSilver迁移实战
点击右上角即可分享
微信分享提示