https://www.lydsy.com/JudgeOnline/problem.php?id=3531

首先这题意要求树链上的最大值以及求和,其树链剖分的做法已经昭然若揭

问题在于这次的信息有宗教条件下的限制,导致不那么容易维护。

第一个想法自然是对于每一个宗教都建一颗线段树,看一下数据范围,宗教的范围是1e5,N的范围也是1e5,又好像空间不那么允许。

事实上可以采用动态线段树的方法节省一波空间,整个做法就变得科学了起来。

如果不是因为我的愚蠢在树剖的重链部分写挂了导致T了很久,这题还是很温暖的

#include <map>
#include <set>
#include <ctime>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <string>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <sstream>
#include <iostream>
#include <algorithm>
#include <functional>
using namespace std;
#define For(i, x, y) for(int i=x;i<=y;i++)
#define _For(i, x, y) for(int i=x;i>=y;i--)
#define Mem(f, x) memset(f,x,sizeof(f))
#define Sca(x) scanf("%d", &x)
#define Sca2(x,y) scanf("%d%d",&x,&y)
#define Sca3(x,y,z) scanf("%d%d%d",&x,&y,&z)
#define Scl(x) scanf("%lld",&x);
#define Pri(x) printf("%d\n", x)
#define Prl(x) printf("%lld\n",x);
#define CLR(u) for(int i=0;i<=N;i++)u[i].clear();
#define LL long long
#define ULL unsigned long long
#define mp make_pair
#define PII pair<int,int>
#define PIL pair<int,long long>
#define PLL pair<long long,long long>
#define pb push_back
#define fi first
#define se second
typedef vector<int> VI;
int read(){int x = ,f = ;char c = getchar();while (c<'' || c>''){if (c == '-') f = -;c = getchar();}
while (c >= ''&&c <= ''){x = x * + c - '';c = getchar();}return x*f;}
const double eps = 1e-;
const int maxn = 1e5 + ;
const int INF = 0x3f3f3f3f;
const int mod = 1e9 + ;
int N,M,K;
inline int max(int a,int b){
return a>b?a:b;
}
PII node[maxn];
struct Edge{
int to,next;
}edge[maxn * ];
int head[maxn],Tot;
void init(){
for(int i = ; i <= N ; i ++) head[i] = -;
Tot = ;
}
void add(int u,int v){
edge[Tot].to = v;
edge[Tot].next = head[u];
head[u] = Tot++;
}
int size[maxn],top[maxn],fa[maxn],son[maxn];
int dep[maxn],pos[maxn];
void dfs(int t,int la){
size[t] = ; son[t] = ;
int heavy = ;
for(int i = head[t]; ~i ; i = edge[i].next){
int v = edge[i].to;
if(v == la) continue;
fa[v] = t;
dep[v] = dep[t] + ;
dfs(v,t);
if(heavy < size[v]){
heavy = size[v];
son[t] = v;
}
size[t] += size[v];
}
}
int cnt;
void dfs2(int t,int la){
top[t] = la;
pos[t] = ++cnt;
if(!son[t]) return;
dfs2(son[t],la);
for(int i = head[t]; ~i ; i = edge[i].next){
int v = edge[i].to;
if(fa[t] == v || son[t] == v) continue;
dfs2(v,v);
}
}
struct Tree{
int Max,sum;
int lt,rt;
void init(){
Max = sum = lt = rt = ;
}
}tree[maxn * ];
int tot;
int thead[maxn];
void check(int &t){
if(t) return;
t = ++tot;
tree[t].init();
}
void Pushup(int t){
int ls = tree[t].lt,rs = tree[t].rt;
check(ls);check(rs);
tree[t].sum = tree[ls].sum + tree[rs].sum;
tree[t].Max = max(tree[ls].Max,tree[rs].Max);
}
void update(int &t,int l,int r,int p,int w){
check(t);
if(l == r){
tree[t].Max = tree[t].sum = w;
return;
}
int m = (l + r) >> ;
if(p <= m) update(tree[t].lt,l,m,p,w);
else update(tree[t].rt,m + ,r,p,w);
Pushup(t);
}
void update(int i,int w){
update(thead[node[i].se],,N,pos[i],w);
}
int query(int &t,int l,int r,int L,int R,int p){
check(t);
if(L <= l && r <= R){
if(p) return tree[t].sum;
else return tree[t].Max;
}
int m = (l + r) >> ;
if(R <= m) return query(tree[t].lt,l,m,L,R,p);
else if(L > m) return query(tree[t].rt,m + ,r,L,R,p);
else{
if(p) return query(tree[t].lt,l,m,L,m,p) + query(tree[t].rt,m + ,r,m + ,R,p);
else return max(query(tree[t].lt,l,m,L,m,p),query(tree[t].rt,m + ,r,m + ,R,p));
}
}
int query(int u,int v,int flag){
int ans = ;
int &c = thead[node[u].se];
while(top[u] != top[v]){
if(dep[top[u]] < dep[top[v]]) swap(u,v);
if(flag) ans += query(c,,N,pos[top[u]],pos[u],);
else ans = max(ans,query(c,,N,pos[top[u]],pos[u],));
u = fa[top[u]];
}
if(dep[u] > dep[v]) swap(u,v);
if(flag) ans += query(c,,N,pos[u],pos[v],);
else ans = max(ans,query(c,,N,pos[u],pos[v],));
return ans;
}
int main(){
Sca2(N,M); init();
for(int i = ; i <= N ; i ++) node[i].fi = read(),node[i].se = read();
for(int i = ; i <= N - ; i ++){
int u = read(),v = read();
add(u,v); add(v,u);
}
int root = ;
dfs(root,); dfs2(root,root);
for(int i = ; i <= N; i ++) update(i,node[i].fi);
for(int i = ; i <= M ; i ++){
char op[];
scanf("%s",op);
int x = read(),y = read();
if(op[] == 'C'){
if(op[] == 'C'){
update(x,);
node[x].se = y;
update(x,node[x].fi);
}else{
node[x].fi = y;
update(x,y);
}
}else{
if(op[] == 'S'){
Pri(query(x,y,)); //sum
}else{
Pri(query(x,y,)); //Max
}
}
}
return ;
}

BZOJ3531 树剖 + 动态开点线段树的更多相关文章

  1. BZOJ 3531: [Sdoi2014]旅行 (树剖+动态开点线段树)

    对于每种信仰维护一棵动态开点线段树就行了- #include <cstdio> #include <cctype> #include <cstring> #incl ...

  2. CF915E Physical Education Lessons 动态开点线段树

    题目链接 CF915E Physical Education Lessons 题解 动态开点线段树 代码 /* 动态开点线段树 */ #include<cstdio> #include&l ...

  3. bzoj3531: [Sdoi2014]旅行 (树链剖分 && 动态开点线段树)

    感觉动态开点线段树空间复杂度好优秀呀 树剖裸题 把每个宗教都开一颗线段树就可以了 但是我一直TLE 然后调了一个小时 为什么呢 因为我 #define max(x, y) (x > y ? x ...

  4. NFLSOJ #917 -「lych_cys模拟题2018」橘子树(树剖+ODT+莫反统计贡献的思想+动态开点线段树)

    题面传送门 sb 出题人不在题面里写 \(b_i=0\) 导致我挂成零蛋/fn/fn 首先考虑树链剖分将路径问题转化为序列上的问题,因此下文中简称"位置 \(i\)"表示 DFS ...

  5. [ZJOI2019]语言(树链剖分+动态开点线段树+启发式合并)

    首先,对于从每个点出发的路径,答案一定是过这个点的路径所覆盖的点数.然后可以做树上差分,对每个点记录路径产生总贡献,然后做一个树剖维护,对每个点维护一个动态开点线段树.最后再从根节点开始做一遍dfs, ...

  6. [2016湖南长沙培训Day4][前鬼后鬼的守护 chen] (动态开点线段树+中位数 or 动规 or 贪心+堆优化)

    题目大意 给定一个长度为n的正整数序列,令修改一个数的代价为修改前后两个数的绝对值之差,求用最小代价将序列转换为不减序列. 其中,n满足小于500000,序列中的正整数小于10^9 题解(引自mzx神 ...

  7. [bzoj 3531][SDOI2014]旅行(树链剖分+动态开点线段树)

    题目:http://www.lydsy.com:808/JudgeOnline/problem.php?id=3531 分析: 对于每个颜色(颜色<=10^5)都建立一颗线段树 什么!那么不是M ...

  8. 【BZOJ-4636】蒟蒻的数列 动态开点线段树 ||(离散化) + 标记永久化

    4636: 蒟蒻的数列 Time Limit: 30 Sec  Memory Limit: 256 MBSubmit: 247  Solved: 113[Submit][Status][Discuss ...

  9. codeforces 893F - Physical Education Lessons 动态开点线段树合并

    https://codeforces.com/contest/893/problem/F 题意: 给一个有根树, 多次查询,每次查询对于$x$i点的子树中,距离$x$小于等于$k$的所有点中权值最小的 ...

随机推荐

  1. Linux压缩和解压命令

    zip命令: 压缩 :zip -r files.zip fileFolder 解压:unzip files.zip tar命令: 压缩:tar -cvf files.tar fileFolder 解压 ...

  2. 当使用cokie进行数据交互时候,cookie只需存储该对象的id即可不需要存放其他数据;只需在写个接口根据cookie里面的对象id来创建对象

    当使用cokie进行数据交互时候,cookie只需存储该对象的id即可不需要存放其他数据:只需在写个接口根据cookie里面的对象id来创建对象

  3. if 结构语句

    if 条件: print()#不只是能输入print

  4. 【数学建模】day07-数理统计II

    方差分析和回归分析. 用数理统计分析试验结果.鉴别各因素对结果影响程度的方法称为方差分析(Analysis Of Variance),记作 ANOVA. 比如:从用不同工艺制作成的灯泡中,各自抽取了若 ...

  5. 微信小程序——常用快捷键【四】

    格式调整 ctrl+[, ctrl+]:代码行缩进(向前|向后) ctrl+shift+[, ctrl+shift+] :折叠打开代码块 ctrl+C, ctrl+V:复制粘贴,如果没有选中任何文件则 ...

  6. python通过配置文件连接数据库

    今天主要是通过读取配置文件(ini文件)获取数据库表的ip,端口,用户,密码,表名等,使用pysql来操作数据库,具体的ini配置文件的操作参见我另一篇博客:https://www.cnblogs.c ...

  7. mysql 0x80004005 unable to connect to any of the specified mysql hosts

    语言:c# 问题:偶尔会出现连不上mysql 报标题的这个错误. 解决方法:把server = localhost 改为 =127.0.0.1 或者静态IP  ,按着改暂时没出现了,继续观望!

  8. [CF977F]Consecutive Subsequence

    题目描述 You are given an integer array of length n. You have to choose some subsequence of this array o ...

  9. spring boot 连接mysql mongodb with jpa

    https://github.com/bigben0123/gs-accessing-data-mysql-mongo-jpa

  10. docker file 示例

    报错 Cannot connect to the Docker daemon. Is the docker daemon running on this host? 这个错误只要输入docker -d ...