BZOJ2333 [SCOI2011]棘手的操作 堆 左偏树 可并堆
欢迎访问~原文出处——博客园-zhouzhendong
去博客园看该题解
题目传送门 - BZOJ2333
题意概括
有N个节点,标号从1到N,这N个节点一开始相互不连通。第i个节点的初始权值为a[i],接下来有如下一些操作:
U x y: 加一条边,连接第x个节点和第y个节点
A1 x v: 将第x个节点的权值增加v
A2 x v: 将第x个节点所在的连通块的所有节点的权值都增加v
A3 v: 将所有节点的权值都增加v
F1 x: 输出第x个节点当前的权值
F2 x: 输出第x个节点所在的连通块中,权值最大的节点的权值
F3: 输出所有节点中,权值最大的节点的权值
题解
我比较懒。
这是一道坑坑的细节题。
我调了大约6个小时。
对于A3,我们只需要保存一个全局变量,每次输出的时候加上去就可以了。
对于F3,我们只需要弄一个multiset就可以了。
对于U、A1、A2、F1、F2,就是左偏树的几个基本操作。
“嘴巴上AC就是简单”
代码
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <set>
#include <vector>
using namespace std;
const int N=300005,Inf=1e8;
int n,m,addv=0;
struct Tree{
int fa,ls,rs,v,add,len;
Tree (){}
Tree (int a,int b,int c,int d,int e,int f){
fa=a,ls=b,rs=c,v=d,add=e,len=f;
}
}t[N];
multiset <int> rts;
void check0(){
t[0]=Tree(0,0,0,-Inf,0,-1);
}
int getroot(int x){
check0();
while (t[x].fa)
x=t[x].fa;
return x;
}
void del(int x){
rts.erase(rts.find(x));
}
void pushdown(int x){
check0();
int s,&add=t[x].add;
if (!t[x].add)
return;
s=t[x].ls;
if (s)
t[s].add+=add,t[s].v+=add;
s=t[x].rs;
if (s)
t[s].add+=add,t[s].v+=add;
add=0;
}
void pushadd(int x){
check0();
if (t[x].fa)
pushadd(t[x].fa);
pushdown(x);
}
int merge(int a,int b){
check0();
if (a==b)
return a;
if (a==0)
return b;
if (b==0)
return a;
if (t[a].v<t[b].v)
swap(a,b);
pushdown(a);
t[a].rs=merge(t[a].rs,b);
t[t[a].rs].fa=a;
if (t[t[a].ls].len<t[t[a].rs].len)
swap(t[a].ls,t[a].rs);
t[a].len=t[t[a].rs].len+1;
return a;
}
void change(int x,int val){
check0();
pushadd(x);
int rt=getroot(x),maxv=t[rt].v;
int fa=t[x].fa,s=merge(t[x].ls,t[x].rs);
if (fa==0&&s==0){
del(t[x].v);
t[x].v=val;
rts.insert(t[x].v);
return;
}
t[s].fa=0;
if (fa){
t[s].fa=fa;
if (t[fa].ls==x)
t[fa].ls=s;
else
t[fa].rs=s;
}
t[x]=Tree(0,0,0,val,0,0);
merge(x,getroot(s?s:fa));
int maxv_=t[getroot(x)].v;
if (maxv_!=maxv){
del(maxv);
rts.insert(maxv_);
}
}
int main(){
scanf("%d",&n);
check0();
rts.clear();
for (int i=1,v;i<=n;i++){
scanf("%d",&v);
t[i]=Tree(0,0,0,v,0,0);
rts.insert(v);
}
scanf("%d",&m);
while (m--){
char op[5],c1,c2;
int a,b;
scanf("%s",op),c1=op[0],c2=op[1];
if (c1=='U'){
scanf("%d%d",&a,&b);
a=getroot(a),b=getroot(b);
if (a==b)
continue;
if (t[a].v<t[b].v)
swap(a,b);
del(t[b].v);
merge(a,b);
}
else if (c1=='A'){
if (c2=='1')
scanf("%d%d",&a,&b),pushadd(a),change(a,t[a].v+b);
else if (c2=='2'){
scanf("%d%d",&a,&b);
a=getroot(a);
del(t[a].v);
t[a].add+=b,t[a].v+=b;
rts.insert(t[a].v);
}
else
scanf("%d",&a),addv+=a;
}
else {
if (c2=='1')
scanf("%d",&a),pushadd(a),printf("%d\n",t[a].v+addv);
else if (c2=='2')
scanf("%d",&a),printf("%d\n",t[getroot(a)].v+addv);
else
printf("%d\n",*--rts.end()+addv);
} }
return 0;
}
BZOJ2333 [SCOI2011]棘手的操作 堆 左偏树 可并堆的更多相关文章
- 【BZOJ2333】棘手的操作(左偏树,STL)
[BZOJ2333]棘手的操作(左偏树,STL) 题面 BZOJ上看把... 题解 正如这题的题号 我只能\(2333\) 神TM棘手的题目... 前面的单点/联通块操作 很显然是一个左偏树+标记 ( ...
- Luogu P3273 [SCOI2011]棘手的操作(左偏树)
什么恶心东西啊,又水又烦 两个可并堆维护即可 #include <cstdio> #include <iostream> #include <cstring> #i ...
- 【BZOJ 2333 】[SCOI2011]棘手的操作(离线+线段树|可并堆-左偏树)
2333: [SCOI2011]棘手的操作 Description 有N个节点,标号从1到N,这N个节点一开始相互不连通.第i个节点的初始权值为a[i],接下来有如下一些操作: U x y: 加一条边 ...
- BZOJ2333 [SCOI2011]棘手的操作 【离线 + 线段树】
题目 有N个节点,标号从1到N,这N个节点一开始相互不连通.第i个节点的初始权值为a[i],接下来有如下一些操作: U x y: 加一条边,连接第x个节点和第y个节点 A1 x v: 将第x个节点的权 ...
- [note]左偏树(可并堆)
左偏树(可并堆)https://www.luogu.org/problemnew/show/P3377 题目描述 一开始有N个小根堆,每个堆包含且仅包含一个数.接下来需要支持两种操作: 操作1: 1 ...
- bzoj2809 [Apio2012]dispatching——左偏树(可并堆)
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2809 思路有点暴力和贪心,就是 dfs 枚举每个点作为管理者: 当然它的子树中派遣出去的忍者 ...
- [bzoj2333] [SCOI2011]棘手的操作 (可并堆)
//以后为了凑字数还是把题面搬上来吧2333 发布时间果然各种应景... Time Limit: 10 Sec Memory Limit: 128 MB Description 有N个节点,标号从1 ...
- bzoj千题计划218:bzoj2333: [SCOI2011]棘手的操作
http://www.lydsy.com/JudgeOnline/problem.php?id=2333 上次那个是线段树,再发一个左偏树 维护两种左偏树 第一种是对每个联通块维护一个左偏树 第二种是 ...
- 【BZOJ 2333 】[SCOI2011]棘手的操作(离线+线段树)
2333: [SCOI2011]棘手的操作 Description 有N个节点,标号从1到N,这N个节点一开始相互不连通.第i个节点的初始权值为a[i],接下来有如下一些操作: U x y: 加一条边 ...
随机推荐
- VUE2.0 饿了吗视频学习笔记(七-终):compute,循环,flex,display:table
一.star组件使用到了computed属性 computed相当于属性的一个实时计算,当对象的某个值改变的时候,会进行实时计算. computed: { starType() { return 's ...
- android contentprovider内容提供者
contentprovider内容提供者:让其他app可以访问私有数据库(文件) 1.AndroidManifest.xml 配置provider <?xml version="1.0 ...
- prim算法,克鲁斯卡尔算法---最小生成树
最小生成树的一个作用,就是求最小花费.要在n个城市之间铺设光缆,主要目标是要使这 n 个城市的任意两个之间都可以通信,但铺设光缆的费用很高,且各个城市之间铺设光缆的费用不同,因此另一个目标是要使铺设光 ...
- Informatic学习总结_day02_增量抽取
SELECT EMP.EMPNO, EMP.ENAME, EMP.JOB, EMP.MGR, EMP.HIREDATE, EMP.SAL, EMP.COMM, EMP.DEPTNO FROM EMP ...
- SpringBoot使用Redis缓存
(1).添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId&g ...
- SpringMVC使用Burlap发布远程服务
参考这篇文章https://www.cnblogs.com/fanqisoft/p/10283156.html 将提供者配置类中的 @Bean public HessianServiceExporte ...
- unbuntu 16.04.2 安装 Eclipse C++开发环境
1.安装JAVA (1)首先添加源: sudo gedit /etc/apt/sources.list 在打开的文件中添加如下内容并保存: deb http://ppa.launchpad.net/w ...
- Ex 6_21 最小点覆盖问题_第八次作业
子问题定义: 对于图中的每个结点,有两种状态,即属于最小点覆盖和不属于最小点覆盖,定义minSet[i][0]表示结点i属于点覆盖,并且以i为根的树的最小点覆盖的大小.minSet[i][1]表示点i ...
- transfer pdf to png
#! /bin/bash # # transfer pdf to png if [ $# != 1 ] ; then echo "USAGE: $0 PDF FILE ABSOLUTELY ...
- 前端工程化-webpack(打包JS)(二)
一.第一种打包方式 webpack entry<entry> output 假设目录结构如下: index.html是入口文件 打包app.js为bundle.js如下 app.js 当使 ...