首先有个暴力DP,设$s_i=\sum\limits_{j\geq i}w_j$,有$f_i=\min\limits_{l_i\lt j\leq i}f_{j-1}+s_{i+1}\max\{t_{j\cdots i}\}$

想用斜率优化,但是式中的max会随$i$改变而改变

考虑把单调栈的弹栈序列建成一棵树,每个点$x$存的直线为$y=t_xx+\min\{f_{fa_x+1\cdots x}\}$,这样一个点要查的直线就是到根路径的一条链,$l_i$的限制在最后一小段查$f$的区间最小值即可

这棵树有很好的性质,从根往下走的$t_x$是不升的,我们要查的$s_{i+1}$是递减的,所以可以树剖+线段树维护凸壳,边插入边维护即可

总时间复杂度$O(n\log^2n)$,感觉把单调栈建成树这一步非常厉害

  1. #include<stdio.h>
  2. #include<vector>
  3. using namespace std;
  4. typedef long long ll;
  5. typedef double du;
  6. const ll inf=1e18;
  7. void fmin(ll&a,ll b){
  8. if(b<a)a=b;
  9. }
  10. int l[100010],t[100010],w[100010],n;
  11. ll s[100010];
  12. int st[100010],tp;
  13. int h[100010],nex[100010],to[100010],M;
  14. void add(int a,int b){
  15. M++;
  16. to[M]=b;
  17. nex[M]=h[a];
  18. h[a]=M;
  19. }
  20. int fa[100010],siz[100010],son[100010];
  21. void dfs(int x){
  22. int i,k=-1;
  23. siz[x]=1;
  24. for(i=h[x];i;i=nex[i]){
  25. fa[to[i]]=x;
  26. dfs(to[i]);
  27. siz[x]+=siz[to[i]];
  28. if(k==-1||siz[to[i]]>siz[k])k=to[i];
  29. }
  30. son[x]=k;
  31. }
  32. int bl[100010],pos[100010],rp[100010];
  33. void dfs(int x,int chain){
  34. bl[x]=chain;
  35. pos[x]=++M;
  36. rp[M]=x;
  37. if(~son[x])dfs(son[x],chain);
  38. for(int i=h[x];i;i=nex[i]){
  39. if(to[i]!=son[x])dfs(to[i],to[i]);
  40. }
  41. }
  42. struct line{
  43. ll k,b;
  44. line(ll k=0,ll b=0):k(k),b(b){}
  45. ll v(ll x){return k*x+b;}
  46. };
  47. du its(line a,line b){
  48. return(b.b-a.b)/(du)(a.k-b.k);
  49. }
  50. typedef vector<line> vl;
  51. vl g[400010];
  52. #define ls g[g.size()-1]
  53. void push(vl&g,line v){
  54. if(!g.empty()&&ls.k==v.k){
  55. if(ls.b<=v.b)return;
  56. g.pop_back();
  57. }
  58. while(g.size()>1&&its(ls,g[g.size()-2])>=its(ls,v))g.pop_back();
  59. g.push_back(v);
  60. }
  61. void modify(int p,line v,int l,int r,int x){
  62. push(g[x],v);
  63. if(l==r)return;
  64. int mid=(l+r)>>1;
  65. if(p<=mid)
  66. modify(p,v,l,mid,x<<1);
  67. else
  68. modify(p,v,mid+1,r,x<<1|1);
  69. }
  70. ll get(vl&g,ll v){
  71. while(g.size()>1&&its(ls,g[g.size()-2])>=v)g.pop_back();
  72. return ls.v(v);
  73. }
  74. ll query(int L,int R,ll v,int l,int r,int x){
  75. if(L<=l&&r<=R)return get(g[x],v);
  76. int mid=(l+r)>>1;
  77. ll res=inf;
  78. if(L<=mid)fmin(res,query(L,R,v,l,mid,x<<1));
  79. if(mid<R)fmin(res,query(L,R,v,mid+1,r,x<<1|1));
  80. return res;
  81. }
  82. ll f[100010];
  83. ll T[400010];
  84. int N;
  85. void build(){
  86. for(N=1;N<=n+1;N<<=1);
  87. for(int i=1;i<N<<1;i++)T[i]=inf;
  88. }
  89. void modify(int x,ll v){
  90. T[x+=N]=v;
  91. for(x>>=1;x;x>>=1)T[x]=min(T[x<<1],T[x<<1|1]);
  92. }
  93. ll query(int s,int t){
  94. ll res=inf;
  95. for(s+=N-1,t+=N+1;s^t^1;s>>=1,t>>=1){
  96. if(~s&1)fmin(res,T[s^1]);
  97. if(t&1)fmin(res,T[t^1]);
  98. }
  99. return res;
  100. }
  101. void work(int x){
  102. int u,l,r,mid;
  103. ll res;
  104. modify(x,f[x-1]);
  105. modify(pos[x],line(t[x],query(fa[x]+1,x)),1,M,1);
  106. res=inf;
  107. for(u=x;;){
  108. if(::l[x]>fa[bl[u]]){
  109. l=pos[bl[u]];
  110. r=pos[u];
  111. while(l<r){
  112. mid=(l+r)>>1;
  113. if(rp[mid]>=::l[x])
  114. r=mid;
  115. else
  116. l=mid+1;
  117. }
  118. if(pos[u]>l)fmin(res,query(l+1,pos[u],s[x+1],1,M,1));
  119. u=rp[l];
  120. break;
  121. }else{
  122. fmin(res,query(pos[bl[u]],pos[u],s[x+1],1,M,1));
  123. u=fa[bl[u]];
  124. }
  125. }
  126. fmin(res,query(::l[x],u)+t[u]*s[x+1]);
  127. f[x]=res;
  128. }
  129. int main(){
  130. int i;
  131. scanf("%d",&n);
  132. for(i=1;i<=n;i++){
  133. scanf("%d%d%d",l+i,t+i,w+i);
  134. l[i]++;
  135. }
  136. for(i=n;i>0;i--)s[i]=s[i+1]+w[i];
  137. for(i=1;i<=n;i++){
  138. while(tp&&t[i]>t[st[tp]]){
  139. add(st[tp-1],st[tp]);
  140. tp--;
  141. }
  142. st[++tp]=i;
  143. }
  144. for(i=1;i<=tp;i++)add(st[i-1],st[i]);
  145. dfs(0);
  146. M=0;
  147. dfs(0,0);
  148. fa[0]=-1;
  149. build();
  150. for(i=1;i<=n;i++)work(i);
  151. printf("%lld",f[n]);
  152. }

[UOJ430]line的更多相关文章

  1. ILJMALL project过程中遇到Fragment嵌套问题:IllegalArgumentException: Binary XML file line #23: Duplicate id

    出现场景:当点击"分类"再返回"首页"时,发生error退出   BUG描述:Caused by: java.lang.IllegalArgumentExcep ...

  2. Error on line -1 of document : Premature end of file. Nested exception: Premature end of file.

    启动tomcat, 出现, ( 之前都是好好的... ) [lk ] ERROR [08-12 15:10:02] [main] org.springframework.web.context.Con ...

  3. 关于xml加载提示: Error on line 1 of document : 前言中不允许有内容

    我是在java中做的相关测试, 首先粘贴下报错: 读取xml配置文件:xmls\property.xml org.dom4j.DocumentException: Error on line 1 of ...

  4. Eclipse "Unable to install breakpoint due to missing line number attributes..."

    Eclipse 无法找到 该 断点,原因是编译时,字节码改变了,导致eclipse无法读取对应的行了 1.ANT编译的class Eclipse不认,因为eclipse也会编译class.怎么让它们统 ...

  5. Linix登录报"/etc/profile: line 11: syntax error near unexpected token `$'{\r''"

    同事反馈他在一测试服务器(CentOS Linux release 7.2.1511)上修改了/etc/profile文件后,使用source命令不能生效,让我帮忙看看,结果使用SecureCRT一登 ...

  6. [LeetCode] Line Reflection 直线对称

    Given n points on a 2D plane, find if there is such a line parallel to y-axis that reflect the given ...

  7. [LeetCode] Tenth Line 第十行

    How would you print just the 10th line of a file? For example, assume that file.txt has the followin ...

  8. [LeetCode] Max Points on a Line 共线点个数

    Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. ...

  9. "Installation failed !" in GUI but not in CLI (/usr/bin/winusb: line 78: 18265 Terminated )

    "Installation failed !" in GUI but not in CLI (/usr/bin/winusb: line 78: 18265 Terminated ...

随机推荐

  1. VS2010 项目属性的默认包含路径设置方法

    VS2010 项目属性的默认包含路径设置方法 分类: c++小技巧2014-01-10 10:16 1358人阅读 评论(0) 收藏 举报 c++ 有两种方法可以设置vs2010的默认包含路径 方法一 ...

  2. 【多视图几何】TUM 课程 第2章 刚体运动

    课程的 YouTube 地址为:https://www.youtube.com/playlist?list=PLTBdjV_4f-EJn6udZ34tht9EVIW7lbeo4 .视频评论区可以找到课 ...

  3. Strusts2笔记5--数据验证

    数据验证: 输入验证分为客户端验证与服务器端验证.客户端验证主要通过JavaScript脚本进行,而服务器端验证主要是通过Java代码进行验证. 分为以下四种情况: (1)手工编写代码,对Action ...

  4. linux挂载光盘

    1.找到光盘的位置 ls -l /dev |grep cdrom mount /dev/sr0  /mnt [root@node2 /]# ls -l /dev |grep cdrom lrwxrwx ...

  5. 洛谷 P4175: bzoj 1146: [CTSC2008]网络管理

    令人抓狂的整体二分题.根本原因还是我太菜了. 在学校写了一个下午写得头晕,回家里重写了一遍,一个小时就写完了--不过还是太慢. 题目传送门:洛谷P4175. 题意简述: 一棵 \(n\) 个结点的树, ...

  6. Git log diff config高级进阶

    Git 历史相关和 git config 高级进阶 前一段时间分享了一篇<更好的 git log>简要介绍怎么美化 git log 命令,其中提到了 alias命令,今天再继续谈谈 git ...

  7. Django 2.0.3安装-压缩包方式

    OS:Windows 10家庭中文版,CPU:Intel Core i5-8250U Python版本:Python 2.7,Python 3.6 Django版本:2.0.3(最新2.0.5) 解压 ...

  8. Centos之常见目录作用介绍

    我们先切换到系统根目录 / 看看根目录下有哪些目录 [root@localhost ~]# cd / [root@localhost /]# ls bin   dev  home  lib64  mn ...

  9. 使用Jsoup解析出html中的img元素

    jsoup 是一款Java 的HTML解析器,可直接解析某个URL地址.HTML文本内容.它提供了一套非常省力的API,可通过DOM,CSS以及类似于jQuery的操作方法来取出和操作数据. 博客项目 ...

  10. Ninject中调用webapi卡住的情况解决

    过年这两天在家做项目,把mvc升级到了5.1,webapi升级到了2.1,忽然发现一个问题,在某些页面上ajax调用webapi时会发现卡死现象,CPU也没有被占用,就是网页一些在加载也不报错,经过2 ...