E46 单调队列优化DP 琪露诺
视频链接:454 单调队列优化DP 琪露诺_哔哩哔哩_bilibili
#include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N=2e5+10; int n,L,R; int a[N],f[N],q[N]; int main(){ scanf("%d%d%d",&n,&L,&R); for(int i=0;i<=n;i++) scanf("%d",&a[i]); memset(f,-0x3f,sizeof f); f[0]=0; int h=1, t=0; int ans=-2e9; for(int i=L;i<=n;i++){ while(h<=t && f[q[t]]<=f[i-L]) t--; q[++t]=i-L; if(q[h]<i-R) h++; f[i]=f[q[h]]+a[i]; if(i>n-R) ans=max(ans,f[i]); } printf("%d\n",ans); }
#include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N=2e5+10; int n,L,R; int a[N],f[N],q[N]; int main(){ scanf("%d%d%d",&n,&L,&R); for(int i=0;i<=n;i++) scanf("%d",&a[i]); memset(f,-0x3f,sizeof f); f[0]=0; int h=1, t=0; int ans=-2e9; for(int i=L;i<=n;i++){ while(h<=t && q[h]<i-R) h++; while(h<=t && f[q[t]]<=f[i-L]) t--; q[++t]=i-L; f[i]=f[q[h]]+a[i]; if(i>n-R) ans=max(ans,f[i]); } printf("%d\n",ans); }