BZOJ1767/Gym207383I CEOI2009 Harbingers 斜率优化、可持久化单调栈、二分
注:本题在BZOJ上是权限题,在Gym里面也不能直接看,所以只能在VJ上交了……
不难考虑到这是一个\(dp\)。
设\(dep_x\)表示\(x\)在树上的带权深度,\(parent_x\)表示\(x\)的祖先节点集合,\(f_x\)表示点\(x\)的答案
那么
\(f_x = \min\limits_{i \in parent_x}\{f_i + V_x \times (dep_x - dep_i)\} + S_x = \min\limits_{i \in parent_x}\{- dep_i \times V_x + f_i\} + S_x + V_x \times dep_x\)
这是一个典型的斜率优化模型,斜率为\(-dep_i\),截距为\(f_i\),自变量为\(V_x\)。
首先对于树上的一条链,\(V_x\)并不单调,所以我们不能使用单调队列。但是因为边权非负,所以斜率单调不降,也就意味着我们不需要使用平衡树,而只需要使用单调栈+二分就可以解决维护凸包的问题。
再者,因为不是序列上的问题,那么计算到某一个点后,当前的单调栈会被其所有儿子共用,而儿子不止一个,所以我们需要将单调栈持久化以应对多次的使用。使用可持久化线段树解决这个问题。
最后注意:在维护凸包时不能暴力\(pop\)当前不满足条件的直线,而是应该在单调栈上二分找到最后一个在凸包上的直线。这样才能够保证复杂度。
总复杂度为\(O(nlog^2n)\)
下面是一份常数巨大的代码
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<ctime>
#include<cctype>
#include<algorithm>
#include<cstring>
#include<iomanip>
#include<queue>
#include<map>
#include<set>
#include<bitset>
#include<stack>
#include<vector>
#include<cmath>
#define int long long
#define mid ((l + r) >> 1)
#define lch Tree[x].l
#define rch Tree[x].r
//This code is written by Itst
using namespace std;
inline int read(){
int a = 0;
char c = getchar();
bool f = 0;
while(!isdigit(c) && c != EOF){
if(c == '-')
f = 1;
c = getchar();
}
if(c == EOF)
exit(0);
while(isdigit(c)){
a = a * 10 + c - 48;
c = getchar();
}
return f ? -a : a;
}
const int MAXN = 1e5 + 7;
struct Edge{
int end , upEd , w;
}Ed[MAXN << 1];
struct line{
int k , b;
line(int _k = 0 , int _b = 0):k(_k) , b(_b){}
};
struct node{
int l , r;
line L;
}Tree[MAXN * 30];
int rt[MAXN] , head[MAXN] , ans[MAXN] , dep[MAXN] , V[MAXN] , S[MAXN] , cnt[MAXN];
int cntN , cntEd , N , maxN;
inline void addEd(int a , int b , int c){
Ed[++cntEd].end = b;
Ed[cntEd].upEd = head[a];
Ed[cntEd].w = c;
head[a] = cntEd;
}
inline int calc(line l , int x){
return l.k * x + l.b;
}
line getL(int x , int l , int r , int tar){
if(l == r)
return Tree[x].L;
if(mid >= tar)
return getL(lch , l , mid , tar);
return getL(rch , mid + 1 , r , tar);
}
void ins(int &x , int l , int r , int tar , line L){
int t = ++cntN;
Tree[t] = Tree[x];
x = t;
if(l == r){
Tree[t].L = L;
return;
}
if(mid >= tar)
ins(lch , l , mid , tar , L);
else
ins(rch , mid + 1 , r , tar , L);
}
inline int erf(int id , int x){
int L = 1 , R = cnt[id];
while(L < R){
int MID = (L + R) >> 1;
if(calc(getL(rt[id] , 1 , N , MID) , x) > calc(getL(rt[id] , 1 , N , MID + 1) , x))
L = MID + 1;
else
R = MID;
}
return calc(getL(rt[id] , 1 , N , L) , x);
}
inline bool ifpop(line L1 , line L2 , line L3){
return (long double)(L1.b - L2.b) * (L3.k - L1.k) >= (long double)(L1.b - L3.b) * (L2.k - L1.k);
}
inline int erf2(int id , line l){
int L = 1 , R = cnt[id];
while(L < R){
int MID = (L + R) >> 1;
if(ifpop(getL(rt[id] , 1 , N , MID) , getL(rt[id] , 1 , N , MID + 1) , l))
R = MID;
else
L = MID + 1;
}
return L;
}
void dfs(int x , int p){
bool f = 1;
if(x != 1){
rt[x] = rt[p];
cnt[x] = cnt[p];
ans[x] = erf(x , V[x]) + dep[x] * V[x] + S[x];
line p = getL(rt[x] , 1 , N , cnt[x]);
if(p.k == -dep[x])
if(p.b > ans[x])
--cnt[x];
else
f = 0;
if(f)
cnt[x] = erf2(x , line(-dep[x] , ans[x]));
}
if(f)
ins(rt[x] , 1 , N , ++cnt[x] , line(-dep[x] , ans[x]));
for(int i = head[x] ; i ; i = Ed[i].upEd)
if(Ed[i].end != p){
dep[Ed[i].end] = dep[x] + Ed[i].w;
dfs(Ed[i].end , x);
}
}
signed main(){
#ifndef ONLINE_JUDGE
freopen("in","r",stdin);
freopen("out","w",stdout);
#endif
N = read();
for(int i = 1 ; i < N ; ++i){
int a = read() , b = read() , c = read();
addEd(a , b , c);
addEd(b , a , c);
}
for(int i = 2 ; i <= N ; ++i){
S[i] = read();
V[i] = read();
}
dfs(1 , 0);
for(int i = 2 ; i <= N ; ++i)
cout << ans[i] << ' ';
return 0;
}
BZOJ1767/Gym207383I CEOI2009 Harbingers 斜率优化、可持久化单调栈、二分的更多相关文章
- BZOJ 1767] [Ceoi2009] harbingers (斜率优化)
[BZOJ 1767] [Ceoi2009] harbingers (斜率优化) 题面 给定一颗树,树中每个结点有一个邮递员,每个邮递员要沿着唯一的路径走向capital(1号结点),每到一个城市他可 ...
- bzoj1767[Ceoi2009]harbingers 斜率优化dp
1767: [Ceoi2009]harbingers Time Limit: 10 Sec Memory Limit: 64 MBSubmit: 421 Solved: 112[Submit][S ...
- 洛谷P3994 Highway(树形DP+斜率优化+可持久化线段树/二分)
有点类似NOI2014购票 首先有方程$f(i)=min\{f(j)+(dep_i-dep_j)*p_i+q_i\}$ 这个显然是可以斜率优化的... $\frac {f(j)-f(k)}{dep_j ...
- Lost My Music:倍增实现可持久化单调栈维护凸包
题目就是求树上每个节点的所有祖先中(ci-cj)/(dj-di)的最小值. 那么就是(ci-cj)/(di-dj)的最大值了. 对于每一个点,它的(ci,di)都是二维坐标系里的一个点 要求的就是祖先 ...
- bzoj3672: [Noi2014]购票(树形DP+斜率优化+可持久化凸包)
这题的加强版,多了一个$l_i$的限制,少了一个$p_i$的单调性,难了好多... 首先有方程$f(i)=min\{f(j)+(dep_i-dep_j)*p_i+q_i\}$ $\frac {f(j) ...
- POJ 1180 斜率优化DP(单调队列)
Batch Scheduling Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 4347 Accepted: 1992 ...
- Dp优化之决策单调栈优化
证明:g(i) ≤ g(j) (i ≤ j) 令 d=g(i) , k<d , 设cut = x表示 f(i) = f(x) + w[x,i] ( x < i ) 构造一个式子: ...
- Codeforces 1383E - Strange Operation(线段树优化 DP or 单调栈+DP)
Codeforces 题目传送门 & 洛谷题目传送门 Yet another 自己搞出来的难度 \(\ge 2800\) 的题 介绍一个奇奇怪怪的 \(n\log n\) 的做法.首先特判掉字 ...
- ●BZOJ 1767 [Ceoi2009]harbingers
题链: http://www.lydsy.com/JudgeOnline/problem.php?id=1767 题解: 斜率优化DP,单调栈,二分 定义 DP[i] 表示从 i 节点出发,到达根所花 ...
随机推荐
- CSS水平居中的三种方法
CSS中经常会用到元素居中,那么今天我为大家分享几种水平居中的方法,下面代码都可以达到同样的居中效果,来不及解释了,快上马(码): 一.margin : 0 auto; <head> &l ...
- putty之pscp上传文件
控制台下打开pscp可执行文件 命令 >pscp -i 证书名 -r 要上传的文件 root@服务器路径:/opt
- 小技巧-mac修改finder菜单栏
效果: 方法: 添加:打开finder后,长按command,可以将其他app拖到菜单栏. 删除:同理,长按command,将不需要的图标拖出菜单栏即可. PS:强烈推荐gotoshell这个小工具, ...
- Python机器学习入门
# NumPy Python科学计算基础包 import numpy as np # 导入numpy库并起别名为npnumpy_array = np.array([[1,3,5],[2,4,6]])p ...
- Unity Chan 3D Asset
Unity Chan 3D Asset 我真的很久沒再家裡開unity,不過今天让我久违的開了 下载地址 :http://ref.gamer.com.tw/redir.php?url=http%3A ...
- CRM lookup筛选
function Loadcouse() { var type; var id; retrieveRecord(Xrm.Page.getAttribute("ownerid").g ...
- 解析oracle的rownum(转)
解析oracle的rownum 本人最近在使用oracle的rownum实现分页显示的时候,对rownum做了进一步的分析和研究.现归纳如下,希望能给大家带来收获. 对于rownum来说它是 ...
- Sql注入的分类:数字型+字符型
Sql注入: 就是通过把SQL命令插入到Web表单提交或输入域名或页面请求的查询字符串,最终达到欺骗服务器执行恶意的SQL命令.通过构造恶意的输入,使数据库执行恶意命令,造成数据泄露或者修改内容等,以 ...
- February 2nd, 2018 Week 5th Friday
Reputation takes a life time to build and a second to destroy. 树立名声需要一生的努力,而毁掉它只需要一秒. To be a smart ...
- windows 10 安装TortoiseSVN.msi时报2503的错误
解释: 出现这个错误的原因是权限不足,右击安装程序也没有“以管理员身份运行”按钮. 解决: 输入 msiexec /package F:\TortoiseSVN-1.9.7.27907-x64.ms ...