Codeforces 1059E. Split the Tree
题目:http://codeforces.com/problemset/problem/1059/E
用倍增可以在nlog内求出每个节点占用一个sequence 时最远可以向父节点延伸到的节点,对每个节点作为sequence 的最后一个元素向上延伸时,将节点的父节点属性合并(类似于并查集的操作),
存在优先队列里保证每次先操作dep最大的节点
#include<iostream>
#include<cstdio>
#include<cmath>
#include<queue>
#include<vector>
#include<string.h>
#include<cstring>
#include<algorithm>
#include<set>
#include<map>
#include<fstream>
#include<cstdlib>
#include<ctime>
#include<list>
#include<climits>
#include<bitset>
#include<random>
#include <ctime>
#include <cassert>
#include <complex>
#include <cstring>
#include <chrono>
using namespace std;
#define fio ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define fopen freopen("input.in", "r", stdin);freopen("output.in", "w", stdout);
#define left asfdasdasdfasdfsdfasfsdfasfdas1
#define set asfdasdasdfasdfsdfasfsdfasfdas2
#define tan asfdasdasdfasdfasfdfasfsdfasfdas
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
typedef long long ll;
typedef unsigned int un;
const int desll[][]={{,},{,-},{,},{-,}};
const int mod=1e9+;
const int maxn=1e5+;
const int maxm=1e5;
const double eps=1e-;
const int csize=;
int n,k,m,ar[maxn];
int f[maxn],tan[maxn][],v[maxn],in[maxn],mark;
ll ss[maxn][];
bool ma[maxn],que[maxn];
priority_queue<pair<int,int> > qu;
vector<int> ve[maxn];
int dep[maxn];
void dfs(int u,int pre)
{
if(pre>=)dep[u]=dep[pre]+;
for(int i=;i<ve[u].size();i++){
int v=ve[u][i];
if(v==pre)continue;
dfs(v,u);
}
}
int main()
{
int l;
ll s,mx=;f[]=;
scanf("%d%d%I64d",&n,&l,&s);
memset(in,,sizeof(in));
memset(tan,,sizeof(tan));
memset(ma,,sizeof(ma));
memset(que,,sizeof(que));
for(int i=;i<=n;i++)scanf("%d",&ar[i]),mx=max(mx,1LL*ar[i]);
for(int i=;i<=n;i++)scanf("%d",&f[i]),in[f[i]]++,ve[f[i]].push_back(i);
dep[]=;
dfs(,-);
if(mx>s){
printf("-1\n");
return ;
}
for(int i=;i<=n;i++){
tan[i][]=f[i];
ss[i][]=ar[f[i]];
}
for(int j=;j<;j++){//倍增预处理
for(int i=;i<=n;i++){
if(i + (<<j) >n)break;
tan[i][j]=tan[tan[i][j-]][j-];
ss[i][j] = ss[i][j-]+ss[tan[i][j-]][j-];
}
}
for(int i=;i<=n;i++){
ll lmid=l-,smid=s-ar[i];
int ins=,x=i;
while(ins>=){
if(tan[x][ins]==)ins--;
else if((<<ins) > lmid)ins--;
else if(ss[x][ins]<=smid){
smid-=ss[x][ins];
lmid -= (<<ins);
x=tan[x][ins];
}
else ins--;
}
v[i]=x;//v[i]代表i节点作为sequence尾节点时最远可以向上延伸到的节点
}
for(int i=;i<=n;i++){
if(v[i]==)exit();
}
for(int i=;i<=n;i++){
if(in[i]==){
qu.push(make_pair(dep[i],i));
que[i]=;
}
}
int ans=;
while(qu.size()){
int u=qu.top().second;qu.pop();
if(ma[u])continue;//如果已经标记过,代表有其他节点可以延伸到此节点,跳过即可
mark=v[u];
int mid=f[u],pre=u;
while(dep[mid]>dep[mark]){//对ma数组进行标记,合并f数组,类似于并查集的操作
ma[pre]=;
f[pre]=mark;
pre=mid;
mid=f[mid];
}
ma[pre]=;
ma[mark]=;
if(pre!=mark)f[pre]=mark;
ans++;
//cout<<mark<<" "<<f[mark]<<" "<<ma[f[mark]]<<" "<<que[f[mark]]<<endl;
if(f[mark]> && !ma[f[mark]] && !que[f[mark]]){
qu.push(make_pair(dep[f[mark]],f[mark]));
que[f[mark]]=;
}
}
printf("%d\n",ans); return ;
}
Codeforces 1059E. Split the Tree的更多相关文章
- Codeforces 461B. Appleman and Tree[树形DP 方案数]
B. Appleman and Tree time limit per test 2 seconds memory limit per test 256 megabytes input standar ...
- Codeforces 461B Appleman and Tree(木dp)
题目链接:Codeforces 461B Appleman and Tree 题目大意:一棵树,以0节点为根节点,给定每一个节点的父亲节点,以及每一个点的颜色(0表示白色,1表示黑色),切断这棵树的k ...
- [Split The Tree][dfs序+树状数组求区间数的种数]
Split The Tree 时间限制: 1 Sec 内存限制: 128 MB提交: 46 解决: 11[提交] [状态] [讨论版] [命题人:admin] 题目描述 You are given ...
- Codeforces 1129 E.Legendary Tree
Codeforces 1129 E.Legendary Tree 解题思路: 这题好厉害,我来复读一下官方题解,顺便补充几句. 首先,可以通过询问 \(n-1\) 次 \((S=\{1\},T=\{ ...
- Codeforces 280C Game on tree【概率DP】
Codeforces 280C Game on tree LINK 题目大意:给你一棵树,1号节点是根,每次等概率选择没有被染黑的一个节点染黑其所有子树中的节点,问染黑所有节点的期望次数 #inclu ...
- Split The Tree
Split The Tree 时间限制: 1 Sec 内存限制: 128 MB 题目描述 You are given a tree with n vertices, numbered from 1 ...
- [CodeForces1059E] Split the Tree
树形DP. 用倍增处理出来每个点往上能延伸出去的最远路径,nlogn 对于每个节点,如果它能被后代使用过的点覆盖,就直接覆盖,这个点就不使用,否则就ans++,让传的Max改成dp[x] #inclu ...
- Codeforces A. Game on Tree(期望dfs)
题目描述: Game on Tree time limit per test 1 second memory limit per test 256 megabytes input standard i ...
- HDU6504 Problem E. Split The Tree【dsu on tree】
Problem E. Split The Tree Problem Description You are given a tree with n vertices, numbered from 1 ...
随机推荐
- js 内置对象属性及方法
1.Date 属性(1): constructor 所建立对象的函数参考 prototype 能够为对象加入的属性和方法 方法(43): getDay() 返回一周 ...
- IE9,IE10 CSS因Mime类型不匹配而被忽略问题 (转)
写页面的时候在chrome,fireforks等页面上显示正常,但是换成IE9,IE10之后就完全没有样式了,报错信息是CSS 因 Mime 类型不匹配而被忽略,下面与大家分享下这个问题的相关的回答 ...
- HTTP中的URL长度限制
首先,其实http 1.1 协议中对url的长度是不受限制的,协议原文: The HTTP protocol does not place any a priori limit on the leng ...
- RGB颜色原理
参考:http://www.cnblogs.com/harrytian/archive/2012/12/12/2814210.html 工作中经常和颜色打交道,但却从来没有从原理上了解一下,这篇文章希 ...
- Idea工具点滴积累
方法参数提示: keymap里面搜索 quick document,默认是F2
- GDSOI2015的某道题目
分析: 看到这个$3^i$就觉得很奇怪的样子...为什么一定要是$3^i$...而且不能重复使用... 不能重复使用就代表不会产生进位,那么一定是若干个$3^i$相加减的式子... 仔细观察,我们发现 ...
- 稀疏编码学习笔记(二)L2范数
L2范数 除了L1范数,还有一种更受宠幸的规则化范数是L2范数: ||W||2.它也不逊于L1范数,它有两个美称,在回归里面,有人把有它的回归叫“岭回归”(Ridge Regression),有人也叫 ...
- react框架
react 其实react=vue, 区别:vue- 双向数据绑定, react 单向数据绑定. 中文文档:https://react.docschina.org/ 第一步:安装方式,不能直接引入 ...
- bzoj 2152 点剖分
比较裸的点剖分,访问到每个重心时,记录一个b数组, 代表当前子树中长度为i的边的数量是b[i],因为是3的倍数, 所以边长mod 3保存就行了,然后记录一个sum数组,代表 当前子树中一个子节点为根的 ...
- 培训补坑(day7:线段树的区间修改与运用)(day6是测试,测试题解以后补坑QAQ)
补坑咯~ 今天围绕的是一个神奇的数据结构:线段树.(感觉叫做区间树也挺科学的.) 线段树,顾名思义就是用来查找一段区间内的最大值,最小值,区间和等等元素. 那么这个线段树有什么优势呢? 比如我们要多次 ...