bzoj 2809
2809: [Apio2012]dispatching
Time Limit: 10 Sec Memory Limit: 128 MB
Submit: 4519 Solved: 2329
[Submit][Status][Discuss]
Description
Input
Output
Sample Input
0 3 3
1 3 5
2 2 2
1 2 4
2 3 1
Sample Output
HINT
如果我们选择编号为 1的忍者作为管理者并且派遣第三个和第四个忍者,薪水总和为 4,没有超过总预算 4。因为派遣了 2 个忍者并且管理者的领导力为 3,
用户的满意度为 2 ,是可以得到的用户满意度的最大值。
Source
代码:
//对于每一个子树显然是选花费小的节点合算,维护一个大根堆,并且当堆的花费和大于m时删掉堆根。
//斜堆。
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
typedef long long ll;
const int MAXN=;
int n,m,tot,cnt,head[MAXN],C[MAXN],L[MAXN],node[MAXN][],root[MAXN],key[MAXN];
ll sum[MAXN],size[MAXN],ans;
struct Edge { int to,next; }edge[MAXN<<];
void init()
{
tot=cnt=;
ans=;
memset(head,-,sizeof(head));
memset(node,,sizeof(node));
}
void addedge(int x,int y)
{
edge[tot].to=y;edge[tot].next=head[x];
head[x]=tot++;
}
int mmeg(int x,int y)
{
if(x==) return y;
if(y==) return x;
if(key[x]<key[y]) swap(x,y);
node[x][]=mmeg(node[x][],y);
swap(node[x][],node[x][]);
return x;
}
int ttop(int x) { return key[x]; }
int ppop(int x) { return mmeg(node[x][],node[x][]); }
void dfs(int x)
{
root[x]=++cnt;
size[x]=;
key[cnt]=sum[x]=C[x];
for(int i=head[x];i!=-;i=edge[i].next){
int y=edge[i].to;
dfs(y);
size[x]+=size[y];
sum[x]+=sum[y];
root[x]=mmeg(root[x],root[y]);
}
while(sum[x]>m){
sum[x]-=ttop(root[x]);
root[x]=ppop(root[x]);
size[x]--;
}
ans=max(ans,size[x]*L[x]);
}
int main()
{
init();
scanf("%d%d",&n,&m);
for(int i=;i<=n;i++){
int x;
scanf("%d%d%d",&x,&C[i],&L[i]);
addedge(x,i);
}
dfs();
printf("%lld\n",ans);
return ;
}
//左偏树。
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
typedef long long ll;
const int MAXN=;
int n,m,tot,cnt,head[MAXN],node[MAXN][],key[MAXN],root[MAXN],d[MAXN],C[MAXN],L[MAXN];
ll size[MAXN],sum[MAXN],ans;
struct Edge { int to,next; }edge[MAXN<<];
void init()
{
tot=cnt=;
ans=;
memset(head,-,sizeof(head));
memset(node,,sizeof(node));
memset(d,-,sizeof(d));
}
void addedge(int x,int y)
{
edge[tot].to=y;edge[tot].next=head[x];
head[x]=tot++;
}
int mmeg(int x,int y)
{
if(x==) return y;
if(y==) return x;
if(key[x]<key[y]) swap(x,y);
node[x][]=mmeg(node[x][],y);
if(d[node[x][]]>d[node[x][]]) swap(node[x][],node[x][]);
d[x]=d[node[x][]]+;
return x;
}
int ttop(int x) { return key[x]; }
int ppop(int x) { return mmeg(node[x][],node[x][]); }
void dfs(int x)
{
size[x]=;
root[x]=++cnt;
d[cnt]=;
sum[x]=key[cnt]=C[x];
for(int i=head[x];i!=-;i=edge[i].next){
int y=edge[i].to;
dfs(y);
size[x]+=size[y];
sum[x]+=sum[y];
root[x]=mmeg(root[x],root[y]);
}
while(sum[x]>m){
sum[x]-=ttop(root[x]);
root[x]=ppop(root[x]);
size[x]--;
}
ans=max(ans,size[x]*L[x]);
}
int main()
{
init();
scanf("%d%d",&n,&m);
for(int i=;i<=n;i++){
int x;
scanf("%d%d%d",&x,&C[i],&L[i]);
addedge(x,i);
}
dfs();
printf("%lld\n",ans);
return ;
}
bzoj 2809的更多相关文章
- BZOJ 2809: [Apio2012]dispatching( 平衡树 + 启发式合并 )
枚举树上的每个结点做管理者, 贪心地取其子树中薪水较低的, 算出这个结点为管理者的满意度, 更新答案. 用平衡树+启发式合并, 时间复杂度为O(N log²N) ------------------- ...
- BZOJ 2809 APIO2012 dispatching Treap+启示式合并 / 可并堆
题目大意:给定一棵树,选定一棵子树中的一些点,薪水和不能超过m,求点的数量*子树根节点的领导能力的最大值 考虑对于每一个节点,我们维护一种数据结构,在当中贪心寻找薪金小的雇佣. 每一个节点暴力重建一定 ...
- BZOJ 2809: [Apio2012]dispatching(左偏树)
http://www.lydsy.com/JudgeOnline/problem.php?id=2809 题意: 思路:最简单的想法就是枚举管理者,在其子树中从薪水低的开始选起,但是每个节点都这样处理 ...
- bzoj 2809 可并堆维护子树信息
对于每个节点,要在其子树中选尽量多的节点,并且节点的权值和小于一个定值. 建立大根堆,每个节点从儿子节点合并,并弹出最大值直到和满足要求. /***************************** ...
- bzoj 2809: [Apio2012]dispatching -- 可并堆
2809: [Apio2012]dispatching Time Limit: 10 Sec Memory Limit: 128 MB Description 在一个忍者的帮派里,一些忍者们被选中派 ...
- bzoj 2809 左偏树\平衡树启发式合并
首先我们对于一颗树,要选取最多的节点使得代价和不超过m,那么我们可以对于每一个节点维护一个平衡树,平衡树维护代价以及代价的和,那么我们可以在logn的时间内求出这个子树最多选取的节点数,然后对于一个节 ...
- 【BZOJ 2809】2809: [Apio2012]dispatching (左偏树)
2809: [Apio2012]dispatching Description 在一个忍者的帮派里,一些忍者们被选中派遣给顾客,然后依据自己的工作获取报偿.在这个帮派里,有一名忍者被称之为 Maste ...
- BZOJ 2809 [Apio2012]dispatching(斜堆+树形DP)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=2809 [题目大意] 给出一棵树,求出每个点有个权值,和一个乘算值,请选取一棵子树, 并 ...
- [BZOJ 2809] Dispatching
Link:https://www.lydsy.com/JudgeOnline/problem.php?id=2809 Algorithm: 很容易看出此题贪心的思路: 只要在每个点的子树中贪心选取费用 ...
随机推荐
- 配置Tomcat使用HTTP/2
转自: https://zhuanlan.zhihu.com/p/21349186 前情提要: Tomcat高效响应的秘密(一) Sendfile与Gzip Tomcat高效响应的秘密(二) keep ...
- Python之并发编程-多进程
目录 一.multiprocessiong模块介绍 二.Process类的介绍 三.进一步介绍(守护进程.锁.队列.管道.事件等) 1.守护进程 2.锁(同步锁.互斥锁) 3.信号量(了解) 4.队列 ...
- DB2分页查询简单示例
select * from ( select a.* ,rownumber() over(order by create_time desc) as rowid from ( select * fro ...
- No.1011_第八次团队会议
罗老师和Bigman助教: 一直以来没看博客页面,我们的博客负责人不是没写博客,而是不小心把博客发到草稿上了.. 请您再次看一下我们的博客,并批评指正! 今天大家的情绪依旧很低落,离第一轮迭代完成距离 ...
- No.110_第三次团队会议
前端的易帜 前端在整个软件中有着举足轻重的地位.前端设计一般可以理解为视觉设计,前端开发则是前台代码的实现. 随着科技水平的提高和生产力的提高,人民对于审美的要求逐渐增高.在没有科技壁垒的情况下,是否 ...
- 第四节 Linux目录文件及文件基本操作
一.Linux目录结构 Linux 的目录与 Windows 的目录的区别: 一种不同是体现在目录与存储介质(磁盘,内存,DVD 等)的关系上,以往的 Windows 一直是以存储介质为主的,主要以盘 ...
- selenium之鼠标事件
1.鼠标悬停火狐版本51,selenium版本3ActionChains(driver).move_to_element(above).perform()执行代码时,报错:selenium.commo ...
- Mininet-Wifi 多接入点(Access Point)实验
实验简介 这个实验来自Mininet-Wifi用户手册.在本实验中,我们会创建一个有三个AP的线式拓扑,并有三个站点(station)与每个AP通过无线相连.将通过这个时间简单演示一些Mininet ...
- POJ 1112 Team Them Up! 二分图判定+01背包
题目链接: http://poj.org/problem?id=1112 Team Them Up! Time Limit: 1000MSMemory Limit: 10000K 问题描述 Your ...
- 第一个spring冲刺团队贡献分(80分满分)
团队贡献分(80分满分): 李泳江 24 叶煜稳 26 谢洪跃 18 周伟雄 12