博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【BZOJ1150】数据备份(动态规划,凸优化)
阅读量:4969 次
发布时间:2019-06-12

本文共 842 字,大约阅读时间需要 2 分钟。

【BZOJ1150】数据备份(动态规划,凸优化)

题面

题解

在不考虑\(K\)的情况下很容易\(dp\)

如果把\(K\)考虑进状态显然是\(O(n^2)\)级别。
所以凸优化一下即可。
注意一下是一个下凸函数,所以是没操作一次就要减去一个权值。

#include
#include
#include
#include
#include
#include
using namespace std;#define ll long long#define MAX 100100inline ll read(){ ll x=0;bool t=false;char ch=getchar(); while((ch<'0'||ch>'9')&&ch!='-')ch=getchar(); if(ch=='-')t=true,ch=getchar(); while(ch<='9'&&ch>='0')x=x*10+ch-48,ch=getchar(); return t?-x:x;}int n,K;ll s[MAX];struct Node{ll x,y;}f[2][MAX];Node operator+(Node a,int b){return (Node){a.x+b,a.y};}bool operator<(Node a,Node b){return a.x
>1; calc(mid); if(f[0][n].y<=K)l=mid+1,ans=f[0][n].x+K*mid; else r=mid-1; } printf("%lld\n",ans); return 0;}

转载于:https://www.cnblogs.com/cjyyb/p/9431238.html

你可能感兴趣的文章
点群的判别(三)
查看>>
GNSS 使用DFT算法 能量损耗仿真
查看>>
【转】Simulink模型架构指导
查看>>
MYSQL数据库的导出的几种方法
查看>>
SQL Server-5种常见的约束
查看>>
硬件之美
查看>>
[转载]java开发中的23种设计模式
查看>>
表格的拖拽功能
查看>>
函数的形参和实参
查看>>
【TP SRM 703 div2 500】 GCDGraph
查看>>
MapReduce 重要组件——Recordreader组件 [转]
查看>>
webdriver api
查看>>
apache 实现图标缓存客户端
查看>>
揭秘:黑客必备的Kali Linux是什么,有哪些弊端?
查看>>
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>