bzoj1597 [Usaco2008 Mar]土地购买——斜率优化DP
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1597
就是斜率优化水题...
然而WA了十几遍,正负号处理真让人心累...
还是该负就负,别乱换了...
代码如下:
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; typedef long long ll; int const maxn=50005; int n,cnt,q[maxn],h,t; ll f[maxn],x[maxn],y[maxn]; struct N{ll a,b;}p[maxn]; ll rd() { ll ret=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1; ch=getchar();} while(ch>='0'&&ch<='9')ret=ret*10+ch-'0',ch=getchar(); return ret*f; } //bool cmp(N x,N y){return x.a==y.a?x.b>y.b:x.a<y.a;} bool cmp(N x,N y){return x.a==y.a?x.b>y.b:x.a<y.a;} double slp(int a,int b){return (double)(f[b]-f[a])/(double)(y[a+1]-y[b+1]);} int main() { n=rd(); for(int i=1;i<=n;i++)p[i].a=rd(),p[i].b=rd(); sort(p+1,p+n+1,cmp); for(int i=1;i<=n;i++) { // if(p[i].a==p[i-1].a)continue; // x[++cnt]=p[i].a; y[cnt]=p[i].b; while (cnt && p[i].b>=y[cnt]) cnt--; x[++cnt]=p[i].a; y[cnt]=p[i].b; } // h=1;t=1;// for(int i=1;i<=cnt;i++) { while(h<t&&slp(q[h],q[h+1])<x[i])h++;//< f[i]=f[q[h]]+x[i]*y[q[h]+1]; while(h<t&&slp(q[t-1],q[t])>slp(q[t],i))t--; q[++t]=i; } printf("%lld",f[cnt]); return 0; }
分类:
动规 - 斜率优化DP
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· .NET Core GC压缩(compact_phase)底层原理浅谈
· Winform-耗时操作导致界面渲染滞后
· Phi小模型开发教程:C#使用本地模型Phi视觉模型分析图像,实现图片分类、搜索等功能
· 语音处理 开源项目 EchoSharp