bzoj 2631: tree link-cut-tree
题目:
Description
一棵n个点的树,每个点的初始权值为1。对于这棵树有q个操作,每个操作为以下四种操作之一:
+ u v c:将u到v的路径上的点的权值都加上自然数c;
- u1 v1 u2 v2:将树中原有的边(u1,v1)删除,加入一条新边(u2,v2),保证操作完之后仍然是一棵树;
* u v c:将u到v的路径上的点的权值都乘上自然数c;
/ u v:询问u到v的路径上的点的权值和,求出答案对于51061的余数。Input
第一行两个整数n,q
接下来n-1行每行两个正整数u,v,描述这棵树
接下来q行,每行描述一个操作
Output
对于每个/对应的答案输出一行
题解
模板题
用了15mins打完,调了半小时
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long ll;
inline void read(ll &x){
x=0;char ch;bool flag = false;
while(ch=getchar(),ch<'!');if(ch == '-') ch=getchar(),flag = true;
while(x=10*x+ch-'0',ch=getchar(),ch>'!');if(flag) x=-x;
}
const ll mod = 51061;
const ll maxn = 210010;
struct Node{
Node *ch[2],*fa;
ll mul,add,w,sum,tag;
ll siz;
void update();
void pushdown();
void set();
}*null;
Node mem[maxn],*it;
inline void init(){
it = mem;null = it++;
null->ch[0] = null->ch[1] = null->fa = null;
null->mul = null->add = null->w = null->sum = 0;
null->tag = null->siz = 0;
}
inline Node* newNode(ll w){
Node *p = it++;p->ch[0] = p->ch[1] = p->fa = null;
p->mul = 1;p->siz = 1;
p->add = p->tag = 0;p->w = p->sum = w;return p;
}
inline void Node::update(){
if(this == null) return;
sum = (ch[0]->sum + ch[1]->sum + w) % mod;
siz = (ch[0]->siz + ch[1]->siz + 1);
}
inline void Node::pushdown(){
if(this == null) return;
if(mul != 1){
if(ch[0] != null){
ch[0]->add = ch[0]->add*mul % mod;
ch[0]->mul = ch[0]->mul*mul % mod;
ch[0]->w = ch[0]->w*mul % mod;
ch[0]->sum = ch[0]->sum*mul % mod;
}
if(ch[1] != null){
ch[1]->add = ch[1]->add*mul % mod;
ch[1]->mul = ch[1]->mul*mul % mod;
ch[1]->w = ch[1]->w*mul % mod;
ch[1]->sum = ch[1]->sum*mul % mod;
}
mul = 1;
}
if(add != 0){
if(ch[0] != null){
ch[0]->add = (ch[0]->add + add) % mod;
ch[0]->sum = (ch[0]->sum + add*ch[0]->siz) % mod;
ch[0]->w = (ch[0]->w + add) % mod;
}
if(ch[1] != null){
ch[1]->add = (ch[1]->add + add) % mod;
ch[1]->sum = (ch[1]->sum + add*ch[1]->siz) % mod;
ch[1]->w = (ch[1]->w + add) % mod;
}
add = 0;
}
if(tag != 0){
if(ch[0] != null) ch[0]->tag ^= 1;
if(ch[1] != null) ch[1]->tag ^= 1;
swap(ch[0],ch[1]);tag = 0;
}
}
inline void rotate(Node *p,Node *x){
ll k = p == x->ch[1];
Node *y = p->ch[k^1],*z = x->fa;
if(z->ch[0] == x) z->ch[0] = p;
if(z->ch[1] == x) z->ch[1] = p;
if(y != null) y->fa = x;
p->fa = z;p->ch[k^1] = x;
x->fa = p;x->ch[k] = y;
x->update();p->update();
}
inline bool isroot(Node *p){
return (p == null) || (p->fa->ch[0] != p && p->fa->ch[1] != p);
}
inline void Splay(Node *p){
p->pushdown();
while(!isroot(p)){
Node *x = p->fa,*y = x->fa;
y->pushdown();x->pushdown();p->pushdown();
if(isroot(x)) rotate(p,x);
else if((p == x->ch[0])^(x == y->ch[0])) rotate(p,x),rotate(p,y);
else rotate(x,y),rotate(p,x);
}p->update();
}
inline Node* Access(Node *x){
for(Node *y = null;x != null;y = x,x = x->fa)
Splay(x),x->ch[1] = y,x->update();
return x;
}
inline void makeRoot(Node *x){
Access(x);Splay(x);x->tag ^= 1;
}
inline void link(Node *x,Node *y){
makeRoot(x);x->fa = y;
}
inline void cut(Node *x,Node *y){
makeRoot(x);Access(y);Splay(y);
y->ch[0] = y->ch[0]->fa = null;
y->update();
}
inline void inc(Node *x,Node *y,ll w){
makeRoot(x);Access(y);Splay(y);
y->add += w;y->add %= mod;
y->sum += w*y->siz;
y->sum %= mod;
y->w += w;y->w %= mod;
}
inline void mul(Node *x,Node *y,ll w){
makeRoot(x);Access(y);Splay(y);
y->add *= w;y->add %= mod;
y->mul *= w;y->mul %= mod;
y->sum *= w;y->sum %= mod;
y->w *= w;y->w %= mod;
}
inline ll query(Node *x,Node *y){
makeRoot(x);Access(y);Splay(y);
return y->sum;
}
int main(){
init();
ll n,q;read(n);read(q);
for(ll i=1;i<=n;++i) newNode(1);
for(ll i=1,u,v;i<n;++i){
read(u);read(v);
link(mem+u,mem+v);
}
char ch;
ll u,v,x;
while(q--){
while(ch = getchar(),ch<'!');
if(ch == '+'){
read(u);read(v);read(x);
inc(mem+u,mem+v,x);
}else if(ch == '-'){
read(u);read(v);
cut(mem+u,mem+v);
read(u);read(v);
link(mem+u,mem+v);
}else if(ch == '*'){
read(u);read(v);read(x);
mul(mem+u,mem+v,x);
}else if(ch == '/'){
read(u);read(v);
printf("%lld\n",query(mem+u,mem+v));
}
}
getchar();getchar();
return 0;
}
bzoj 2631: tree link-cut-tree的更多相关文章
- bzoj 3282: Tree (Link Cut Tree)
链接:https://www.lydsy.com/JudgeOnline/problem.php?id=3282 题面: 3282: Tree Time Limit: 30 Sec Memory L ...
- 【BZOJ 3282】Tree Link Cut Tree模板题
知道了为什么要换根(changeroot),access后为什么有时要splay,以及LCT的其他操作,算是比较全面的啦吧,,, 现在才知道这些,,,真心弱,,, #include<cstdio ...
- [BZOJ 2002] [HNOI2010]弹飞绵羊(Link Cut Tree)
[BZOJ 2002] [HNOI2010]弹飞绵羊(Link Cut Tree) 题面 某天,Lostmonkey发明了一种超级弹力装置,为了在他的绵羊朋友面前显摆,他邀请小绵羊一起玩个游戏.游戏一 ...
- link cut tree 入门
鉴于最近写bzoj还有51nod都出现写不动的现象,决定学习一波厉害的算法/数据结构. link cut tree:研究popoqqq那个神ppt. bzoj1036:维护access操作就可以了. ...
- Link Cut Tree学习笔记
从这里开始 动态树问题和Link Cut Tree 一些定义 access操作 换根操作 link和cut操作 时间复杂度证明 Link Cut Tree维护链上信息 Link Cut Tree维护子 ...
- Codeforces Round #339 (Div. 2) A. Link/Cut Tree 水题
A. Link/Cut Tree 题目连接: http://www.codeforces.com/contest/614/problem/A Description Programmer Rostis ...
- Link/cut Tree
Link/cut Tree 一棵link/cut tree是一种用以表示一个森林,一个有根树集合的数据结构.它提供以下操作: 向森林中加入一棵只有一个点的树. 将一个点及其子树从其所在的树上断开. 将 ...
- 洛谷P3690 Link Cut Tree (模板)
Link Cut Tree 刚开始写了个指针版..调了一天然后放弃了.. 最后还是学了黄学长的板子!! #include <bits/stdc++.h> #define INF 0x3f3 ...
- LCT总结——概念篇+洛谷P3690[模板]Link Cut Tree(动态树)(LCT,Splay)
为了优化体验(其实是强迫症),蒟蒻把总结拆成了两篇,方便不同学习阶段的Dalao们切换. LCT总结--应用篇戳这里 概念.性质简述 首先介绍一下链剖分的概念(感谢laofu的讲课) 链剖分,是指一类 ...
- bzoj2049 [Sdoi2008]Cave 洞穴勘测 link cut tree入门
link cut tree入门题 首先说明本人只会写自底向上的数组版(都说了不写指针.不写自顶向下QAQ……) 突然发现link cut tree不难写... 说一下各个函数作用: bool isro ...
随机推荐
- Spring Ioc (this is my first example)
一.首先看下源码结构 二.HelloWord 类 package com.northeasttycoon.bean; /** * 打印出 helloword 参数值 * * @author tycoo ...
- obj-c学习笔记
本文转载至 http://blog.csdn.net/c395565746c/article/details/7573793 当对象经过在dealloc方法处理时,该对象就已经处于已销毁状态,其它 ...
- SpringBoot启动流程分析(六):IoC容器依赖注入
SpringBoot系列文章简介 SpringBoot源码阅读辅助篇: Spring IoC容器与应用上下文的设计与实现 SpringBoot启动流程源码分析: SpringBoot启动流程分析(一) ...
- 毕达哥拉斯三元组(勾股数组)poj1305
本原毕达哥拉斯三元组是由三个正整数x,y,z组成,且gcd(x,y,z)=1,x*x+y*y=z*z 对于所有的本原毕达哥拉斯三元组(a,b,c) (a*a+b*b=c*c,a与b必定奇偶互异,且c为 ...
- [转]jquery中innerWidth(),outerWidth(),outerWidth(true)和width()的区别
转自:http://www.cnblogs.com/keyi/p/5933981.html jquery中innerWidth(),outerWidth(),outerWidth(true)和wi ...
- Full卷积 Same卷积 Vaild卷积
- HTML 与 SGML关系
HTML :超文本标记语言,“超文本”就是指页面内可以包含图片.链接,甚至音乐.程序等非文字元素 SGML:标准通用标记语言 HTML 是SGML下的一个应用
- win7 32位下载安装redis并安装php_redis扩展
redis打包文件下载地址:http://files.cnblogs.com/files/cuiwenyuan/Redis-3.2.100-Windows-32.zip php_redis.dll下载 ...
- socket编程python+c
python版: server: def socket_loop_server_function(): HOST = '192.168.56.1' PORT = 21567 sk = socket.s ...
- centos7下只需两个命令升级php版本
我的php5.4 升级到5.6 sudo yum clean allsudo yum install -y php56w Resolving Dependencies --> Running t ...