丘中有麻plant

改自这儿,by ZBQ。









还有隐藏的一页不放了。。

直接走下去的话,如果开始时间确定那么到每个点的时间确定,把time减去dis就可以去掉路程的影响了。

这样对于减去d后的t,如果想要摘一部分,那么应是取其中最大的t恰好摘它,其它t较小的会早熟然后等着。。(意会一下吧)

所以t大的会对t小的产生贡献,而要恰好摘t小的,那就摘不了t大的了。

所以对t排序并不会影响答案。从小到大依次分K段就行了。i对其中每个作物j的贡献是ti-tj。

注意t相等时虽然会同时摘,但是不能直接去重!因为如果不恰好摘它们,其它的会对它们所有产生贡献。。

所以考试的时候只有10分。。

某些剪枝之类的优化还是想好再加吧。没啥用又不会被卡T,不如不加。

#include <cstdio>
#include <cctype>
#include <cstring>
#include <algorithm>
//#define gc() getchar()
#define MAXIN 200000
#define gc() (SS==TT&&(TT=(SS=IN)+fread(IN,1,MAXIN,stdin),SS==TT)?EOF:*SS++)
typedef long long LL;
const int N=2e5+5; int n,K,q[N],num[N];//longlong
LL tm[N],sum[N],f[N],C;
char IN[MAXIN],*SS=IN,*TT=IN; inline int read()
{
int now=0;register char c=gc();
for(;!isdigit(c);c=gc());
for(;isdigit(c);now=now*10+c-'0',c=gc());
return now;
}
namespace Spec
{
int n,Now,q[N];//longlong
LL sum[N],f[2][N];
inline LL Y(int j,int k){
return f[Now][j]-f[Now][k]+sum[j]-sum[k];
}
inline LL X(int j,int k){
return j-k;
}
inline LL Calc(int fr,int to,int k){
return f[Now][fr]+(to-fr)*tm[to]-sum[to]+sum[fr];
}
void Main()
{
for(int i=1; i<=n; ++i) sum[i]=sum[i-1]+(LL)tm[i];
memset(f,0x7f,sizeof f);
f[0][0]=0, Now=0;
for(int j=1; j<=K; ++j, Now^=1)
{
int h=1,t=1; q[1]=j-1;// q[1]=0;
for(int i=j; i<=n; ++i)
{
while(h<t && Y(q[h+1],q[h])<=1ll*tm[i]*X(q[h+1],q[h])) ++h;
f[Now^1][i]=Calc(q[h],i,j); while(h<t && Y(i,q[t])*X(q[t],q[t-1])<=Y(q[t],q[t-1])*X(i,q[t])) --t;
q[++t]=i;
}
}
printf("%I64d\n",f[Now][n]);
}
}
inline LL Y(int j,int k){
return f[j]-f[k]+sum[j]-sum[k];
}
inline LL X(int j,int k){
return j-k;
}
inline LL Calc(int fr,int to){
return f[fr]+tm[to]*(to-fr)-sum[to]+sum[fr]+C;
}
void Solve()
{
f[0]=num[0]=0;
int h=1,t=1; q[1]=0;
for(int i=1; i<=n; ++i)
{
while(h<t && Y(q[h+1],q[h])<=tm[i]*X(q[h+1],q[h])) ++h;
f[i]=Calc(q[h],i), num[i]=num[q[h]]+1;
while(h<t && Y(i,q[t])*X(q[t],q[t-1])<=Y(q[t],q[t-1])*X(i,q[t])) --t;
q[++t]=i;
}
} int main()
{
freopen("plant.in","r",stdin);
freopen("plant.out","w",stdout); n=read(), K=read();
int s=0;
tm[1]=read(), read();
for(int i=2; i<=n; ++i) tm[i]=read()-(s+=read()); std::sort(tm+1,tm+1+n);
// int cnt=n; n=1;// WA!
// for(int i=2; i<=cnt; ++i) if(tm[i]!=tm[i-1]) tm[++n]=tm[i];
for(int i=1; i<=n; ++i) sum[i]=sum[i-1]+tm[i]; if(1ll*n*K<=2e7) {Spec::n=n, Spec::Main(); return 0;}
// Spec::n=n, Spec::Main(); return 0; LL l=sum[n]*n, r=-l;
if(l>r) std::swap(l,r);
while(l<=r){
if(C=l+r>>1, Solve(), num[n]>K) l=C+1;
else r=C-1;
}
C=l, Solve();
// C=r+1, Solve();
printf("%I64d\n",f[n]-C*K); return 0;
}

这是\(O(n^2k)\)暴力和\(O(nk)\)斜率优化,还有个改double的带权二分(开始拍出错tm[]爆int了),都去重了所以对拍虽然过了然而。。

就这题会所以特别不嫌麻烦。

暴力:

#include <cstdio>
#include <cctype>
#include <cstring>
#include <algorithm>
#define gc() getchar()
//#define int long long
typedef long long LL;
const int N=1e4+5; int n,K,tm[N];
LL sum[N],f[N][250]; inline int read()
{
int now=0;register char c=gc();
for(;!isdigit(c);c=gc());
for(;isdigit(c);now=now*10+c-'0',c=gc());
return now;
}
inline LL Calc(int fr,int to,int k){
return f[fr][k-1]+1ll*(to-fr)*tm[to]-sum[to]+sum[fr];
} int main()
{
freopen("plant.in","r",stdin);
// freopen("plant.out","w",stdout);
freopen("violence.out","w",stdout); n=read(), K=read();
int s=0;
tm[1]=read(), read();
for(int i=2; i<=n; ++i) tm[i]=read()-(s+=read()); // for(int i=1; i<=n; ++i) printf("%d:%d\n",i,tm[i]);
std::sort(tm+1,tm+1+n);
int cnt=n; n=1;
for(int i=2; i<=cnt; ++i) if(tm[i]!=tm[i-1]) tm[++n]=tm[i];
// for(int i=1; i<=n; ++i) printf("%d:%d\n",i,tm[i]);putchar('\n'); for(int i=1; i<=n; ++i) sum[i]=sum[i-1]+(LL)tm[i];
memset(f,0x7f,sizeof f);
f[0][0]=0;
for(int i=1; i<=n; ++i)
for(int j=1; j<=K; ++j)
for(int k=0; k<i; ++k)
f[i][j]=std::min(f[i][j],Calc(k,i,j));
printf("%I64d\n",f[n][K]); return 0;
}

裸斜率优化

#include <cstdio>
#include <cctype>
#include <cstring>
#include <algorithm>
#define gc() getchar()
typedef long long LL;
const int N=2e5+5; int n,K,Now,q[N];//longlong
LL tm[N],sum[N],f[2][N]; inline int read()
{
int now=0;register char c=gc();
for(;!isdigit(c);c=gc());
for(;isdigit(c);now=now*10+c-'0',c=gc());
return now;
}
inline LL Y(int j,int k){
return f[Now][j]-f[Now][k]+sum[j]-sum[k];
}
inline LL X(int j,int k){
return j-k;
}
inline LL Calc(int fr,int to,int k){
return f[Now][fr]+tm[to]*(to-fr)-sum[to]+sum[fr];
} int main()
{
freopen("plant.in","r",stdin);
// freopen("plant.out","w",stdout);
freopen("slope.out","w",stdout); n=read(), K=read();
int s=0;
tm[1]=read(), read();
for(int i=2; i<=n; ++i) tm[i]=read()-(s+=read()); std::sort(tm+1,tm+1+n);
int cnt=n; n=1;
for(int i=2; i<=cnt; ++i) if(tm[i]!=tm[i-1]) tm[++n]=tm[i]; for(int i=1; i<=n; ++i) sum[i]=sum[i-1]+tm[i];
memset(f,0x7f,sizeof f);
f[0][0]=0, Now=0;
for(int j=1; j<=K; ++j, Now^=1)
{
int h=1,t=1; q[1]=j-1;// q[1]=0;
for(int i=j; i<=n; ++i)
{
while(h<t && Y(q[h+1],q[h])<=tm[i]*X(q[h+1],q[h])) ++h;
f[Now^1][i]=Calc(q[h],i,j); while(h<t && Y(i,q[t])*X(q[t],q[t-1])<=Y(q[t],q[t-1])*X(i,q[t])) --t;
q[++t]=i;
}
}
printf("%I64d\n",f[Now][n]); return 0;
}

double带权二分。。:

//also right.
#include <cstdio>
#include <cctype>
#include <cstring>
#include <algorithm>
//#define gc() getchar()
#define eps (1e-2)
#define MAXIN 200000
#define gc() (SS==TT&&(TT=(SS=IN)+fread(IN,1,MAXIN,stdin),SS==TT)?EOF:*SS++)
typedef long long LL;
const int N=2e5+5; int n,K,tm[N],q[N],num[N];//longlong
LL sum[N];
double f[N],C;
char IN[MAXIN],*SS=IN,*TT=IN; inline int read()
{
int now=0;register char c=gc();
for(;!isdigit(c);c=gc());
for(;isdigit(c);now=now*10+c-'0',c=gc());
return now;
}
inline double Y(int j,int k){
return f[j]-f[k]+sum[j]-sum[k];
}
inline double X(int j,int k){
return j-k;
}
inline double Calc(int fr,int to){
return f[fr]+1.0*(to-fr)*tm[to]-(double)sum[to]+(double)sum[fr]+C;
}
void Solve()
{
f[0]=num[0]=0;
int h=1,t=1; q[1]=0;
for(int i=1; i<=n; ++i)
{
while(h<t && Y(q[h+1],q[h])<=1.0*tm[i]*X(q[h+1],q[h])) ++h;
f[i]=Calc(q[h],i), num[i]=num[q[h]]+1;
while(h<t && Y(i,q[t])*X(q[t],q[t-1])<=Y(q[t],q[t-1])*X(i,q[t])) --t;
q[++t]=i;
}
} int main()
{
freopen("plant.in","r",stdin);
// freopen("tmp.out","w",stdout); n=read(), K=read();
int s=0;
tm[1]=read(), read();
for(int i=2; i<=n; ++i) tm[i]=read()-(s+=read()); std::sort(tm+1,tm+1+n);
int cnt=n; n=1;
for(int i=2; i<=cnt; ++i) if(tm[i]!=tm[i-1]) tm[++n]=tm[i];
for(int i=1; i<=n; ++i) sum[i]=sum[i-1]+(LL)tm[i]; double l=1.0*sum[n]*n, r=-l;
if(l>r) std::swap(l,r);
while(r>l+eps){
if(C=(l+r)*0.5, Solve(), num[n]>K) l=C+1;
else r=C-1;
}
C=l, Solve();
// C=r+1, Solve();
printf("%I64d\n",(LL)(f[n]-C*K+0.5)); return 0;
}

6.13校内互测 (DP 带权二分 斜率优化)的更多相关文章

  1. 洛谷 4383 [八省联考2018]林克卡特树lct——树形DP+带权二分

    题目:https://www.luogu.org/problemnew/show/P4383 关于带权二分:https://www.cnblogs.com/flashhu/p/9480669.html ...

  2. 洛谷.4383.[八省联考2018]林克卡特树lct(树形DP 带权二分)

    题目链接 \(Description\) 给定一棵边带权的树.求删掉K条边.再连上K条权为0的边后,新树的最大直径. \(n,K\leq3\times10^5\). \(Solution\) 题目可以 ...

  3. Codeforces.739E.Gosha is hunting(DP 带权二分)

    题目链接 \(Description\) 有\(n\)只精灵,两种精灵球(高级和低级),每种球能捕捉到第\(i\)只精灵的概率已知.求用\(A\)个低级球和\(B\)个高级球能捕捉到精灵数的最大期望. ...

  4. DP的各种优化(动态规划,决策单调性,斜率优化,带权二分,单调栈,单调队列)

    前缀和优化 当DP过程中需要反复从一个求和式转移的话,可以先把它预处理一下.运算一般都要满足可减性. 比较naive就不展开了. 题目 [Todo]洛谷P2513 [HAOI2009]逆序对数列 [D ...

  5. P4383 [八省联考2018]林克卡特树lct 树形DP+凸优化/带权二分

    $ \color{#0066ff}{ 题目描述 }$ 小L 最近沉迷于塞尔达传说:荒野之息(The Legend of Zelda: Breath of The Wild)无法自拔,他尤其喜欢游戏中的 ...

  6. 洛谷P2619 [国家集训队2]Tree I(带权二分,Kruscal,归并排序)

    洛谷题目传送门 给一个比较有逼格的名词--WQS二分/带权二分/DP凸优化(当然这题不是DP). 用来解决一种特定类型的问题: 有\(n\)个物品,选择每一个都会有相应的权值,需要求出强制选\(nee ...

  7. BZOJ_4609_[Wf2016]Branch Assignment_决策单调性+带权二分

    BZOJ_4609_[Wf2016]Branch Assignment_决策单调性+带权二分 Description 要完成一个由s个子项目组成的项目,给b(b>=s)个部门分配,从而把b个部门 ...

  8. BZOJ_5311_贞鱼_决策单调性+带权二分

    BZOJ_5311_贞鱼_决策单调性+带权二分 Description 众所周知,贞鱼是一种高智商水生动物.不过他们到了陆地上智商会减半. 这不?他们遇到了大麻烦! n只贞鱼到陆地上乘车,现在有k辆汽 ...

  9. HDU 4359 Easy Tree DP? 带权二叉树的构造方法 dp

    题意: 给定n deep 1.构造一个n个节点的带权树,且最大深度为deep,每一个节点最多仅仅能有2个儿子 2.每一个节点的值为2^0, 2^1 ··· 2^(n-1)  随意两个节点值不能同样 3 ...

随机推荐

  1. python端口扫描

    简易版: #author:Blood_Zero #coding:utf-8 import socket import sys PortList=[21,22,23,25,80,135] # host= ...

  2. STL容器基本功能与分类

    STL有7中容器. 分别为: vector 向量 <vector>(头文件) 随机访问容器.顺序容器 deque 双端队列 <deque> 随机访问容器.顺序容器 list   ...

  3. 【hdu6334】【2018Multi-University-Training Contest04】Problem C. Problems on a Tree

    维护1边的联通块和2边的联通块,合并的时候直接启发式合并. cdqz的大爷好强啊. #include<bits/stdc++.h> #define lson (o<<1) #d ...

  4. 【不知道是啥的NOIP模拟赛】网络入侵

    题意是这样的: 给你一棵树,每个边有一个初始的0/1边权.你希望把它弄成一个给定的样子. 你每次可以选一条树链取反,然后问你最少要操作几次. ----------------------------- ...

  5. ASP.NET MVC5 支持PUT 和DELETE

    Web.config <configuration> <system.webServer> <handlers> <remove name="Ext ...

  6. IOS使用命令行打包

    1.安装证书 develop:调试证书,包含调试信息 安装时需要证书已加入设备UDID或是越狱设备才能安装. distribution:正式证书,发布到appstore所用,屏蔽了调试信息,要想测试安 ...

  7. java基础49 IO流技术(对象输入流/对象输出流)

    1.对象输入输出流 对象注意作用是用于写对象信息与读取对象信息 1.对象输出流:ObjectOutputStream    2.对象输入流:ObjectInputStream 2.对象输入输出流的步骤 ...

  8. JMeter接口&性能测试

    JMeter接口测试 目前最新版本发展到5.0版本,需要Java7以上版本环境,下载解压目录后,进入\apache-jmeter-5.0\bin\,双击ApacheJMeter.jar文件启动JMem ...

  9. IntelliJ IDEA + Tomcat ;On Upate Action 与 On Frame Deactivation

    On Upate Action 与 On Frame Deactivation  这两个选项的设置,依赖于 项目的部署方式 是war包 还是 exploded ,看下面的gif: 这里实在是太灵活了, ...

  10. MySQL学习笔记:调用存储过程或函数报1418错误

    问题 MySQL开启bin-log后,调用存储过程或者函数以及触发器时,会出现错误号为1418的错误: ERROR 1418 (HY000): This function has none of DE ...