poj3237 Tree 树链剖分

2024-06-14 09:08
文章标签 tree 树链 剖分 poj3237

本文主要是介绍poj3237 Tree 树链剖分,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题意:在spoj375基础上增加了一条路径的取反操作,其他都一样。

思路:剖分没有变化,在线段树部分,需要一个tag标记该段是否需要需要取反,记录一个最大值、最小值即可。=  =(打tag的那

段应该已经跟新好,push_down的时候如果tag=1那么直接对两个子段进行更新。。一开始意识模糊了。。)详见代码:

/*********************************************************file name: poj3237.cppauthor : kereocreate time:  2015年01月21日 星期三 10时15分39秒
*********************************************************/
#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#include<set>
#include<map>
#include<vector>
#include<stack>
#include<cmath>
#include<string>
#include<algorithm>
using namespace std;
typedef long long ll;
const int sigma_size=26;
const int N=50;
const int MAXN=10000+50;
const int inf=0x3fffffff;
const double eps=1e-8;
const int mod=100000000+7;
#define L(x) (x<<1)
#define R(x) (x<<1|1)
#define PII pair<int, int>
#define mk(x,y) make_pair((x),(y))
int n,edge_cnt,cnt;
char str[N];
int head[MAXN],sz[MAXN],dep[MAXN],son[MAXN],fa[MAXN],top[MAXN],pos[MAXN];
struct Edge{int u,v,w,next;
}edge[MAXN<<1];
struct node{int l,r;int tag,Min,Max;
}segtree[MAXN<<2];
void init(){edge_cnt=cnt=0;memset(head,-1,sizeof(head));
}
void addedge(int u,int v,int w){edge[edge_cnt].u=u; edge[edge_cnt].v=v;edge[edge_cnt].w=w; edge[edge_cnt].next=head[u]; head[u]=edge_cnt++;
}
void dfs1(int u,int pre,int depth){sz[u]=1; son[u]=0; dep[u]=depth; fa[u]=pre;for(int i=head[u];i!=-1;i=edge[i].next){int v=edge[i].v;if(v == pre)continue;dfs1(v,u,depth+1);sz[u]+=sz[v];if(sz[son[u]]<sz[v])son[u]=v;}
}
void dfs2(int u,int tp){pos[u]=cnt++; top[u]=tp;if(son[u]!=0)dfs2(son[u],top[u]);for(int i=head[u];i!=-1;i=edge[i].next){int v=edge[i].v;if(v == fa[u] || v == son[u])continue;dfs2(v,v);}
}
void build(int rt,int l,int r){segtree[rt].l=l; segtree[rt].r=r;segtree[rt].tag=0; segtree[rt].Min=inf; segtree[rt].Max=-inf;if(l == r)return ;int mid=(l+r)>>1;build(L(rt),l,mid); build(R(rt),mid+1,r);
}
void push_down(int rt){if(segtree[rt].l == segtree[rt].r)return ;if(segtree[rt].tag){segtree[rt].tag=0;segtree[L(rt)].tag^=1; segtree[R(rt)].tag^=1;swap(segtree[L(rt)].Max,segtree[L(rt)].Min);segtree[L(rt)].Max*=-1; segtree[L(rt)].Min*=-1;swap(segtree[R(rt)].Max,segtree[R(rt)].Min);segtree[R(rt)].Max*=-1; segtree[R(rt)].Min*=-1;}
}
void push_up(int rt){segtree[rt].Max=max(segtree[L(rt)].Max,segtree[R(rt)].Max);segtree[rt].Min=min(segtree[L(rt)].Min,segtree[R(rt)].Min);
}
void update(int rt,int p,int x){if(segtree[rt].l == segtree[rt].r){segtree[rt].tag=0;segtree[rt].Max=segtree[rt].Min=x;return ;}push_down(rt);int mid=(segtree[rt].l+segtree[rt].r)>>1;if(p<=mid)update(L(rt),p,x);else update(R(rt),p,x);push_up(rt);
}
void Negate(int rt,int l,int r){if(segtree[rt].l == l && segtree[rt].r == r){segtree[rt].tag^=1;swap(segtree[rt].Max,segtree[rt].Min);segtree[rt].Min*=-1; segtree[rt].Max*=-1;return ;}push_down(rt);int mid=(segtree[rt].l+segtree[rt].r)>>1;if(r<=mid)Negate(L(rt),l,r);else if(l>mid)Negate(R(rt),l,r);else{Negate(L(rt),l,mid); Negate(R(rt),mid+1,r);}push_up(rt);
}
int query(int rt,int l,int r){if(segtree[rt].l ==l &&  segtree[rt].r == r)return segtree[rt].Max;push_down(rt);int mid=(segtree[rt].l+segtree[rt].r)>>1;if(r<=mid)return query(L(rt),l,r);else if(l>mid)return query(R(rt),l,r);elsereturn max(query(L(rt),l,mid),query(R(rt),mid+1,r));push_up(rt);
}
int solve(int id,int u,int v){int ans=-inf;while(top[u]!=top[v]){if(dep[top[u]]<dep[top[v]])swap(u,v);if(id == 1)ans=max(ans,query(1,pos[top[u]],pos[u]));else Negate(1,pos[top[u]],pos[u]);u=fa[top[u]];}if(dep[u]>dep[v])swap(u,v);if(u!=v){if(id == 1)ans=max(ans,query(1,pos[u]+1,pos[v]));else Negate(1,pos[u]+1,pos[v]);}return ans;
}
int main(){int T;scanf("%d",&T);while(T--){init();scanf("%d",&n);for(int i=1;i<n;i++){int u,v,w;scanf("%d%d%d",&u,&v,&w);addedge(u,v,w); addedge(v,u,w);}dfs1(1,1,1); dfs2(1,1); build(1,1,n-1);for(int i=0;i<edge_cnt;i+=2){int u=edge[i].u,v=edge[i].v,w=edge[i].w;if(dep[u]<dep[v])swap(u,v);update(1,pos[u],w);}while(1){scanf("%s",str);if(str[0] == 'D')break;if(str[0] == 'C'){int x,w;scanf("%d%d",&x,&w);x=(x-1)*2;int u=edge[x].u,v=edge[x].v;if(dep[u]<dep[v])swap(u,v);update(1,pos[u],w);}if(str[0] == 'Q'){int u,v;scanf("%d%d",&u,&v);printf("%d\n",solve(1,u,v));}if(str[0] == 'N'){int u,v;scanf("%d%d",&u,&v);solve(2,u,v);}}}return 0;
}


这篇关于poj3237 Tree 树链剖分的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1059976

相关文章

树(Tree)——《啊哈!算法》

树 什么是树?树是一种特殊的图,不包含回路的连通无向树。 正因为树有着“不包含回路”这个特点,所以树就被赋予了很多特性。 一棵树中的任意两个结点有且仅有唯一的一条路径连通。一棵树如果有n个结点,那么它一定恰好有n-1条边。在一棵树中加一条边将会构成一个回路。 一棵树有且只有一个根结点。 没有父结点的结点称为根结点(祖先)。没有子结点的结点称为叶结点。如果一个结点既不是根结点也不是叶

226 Invert Binary Tree

//226 Invert Binary Tree//算法思路:主要使用递归算法public class Solution {public TreeNode invertTree(TreeNode root) {//1 出口 空节点if (root==null)return null;//2 递归 调用自己TreeNode left = root.left;TreeNode right = ro

Sorry!Hbase的LSM Tree就是可以为所欲为!

我们先抛出一个问题: LSM树是HBase里使用的非常有创意的一种数据结构。在有代表性的关系型数据库如MySQL、SQL Server、Oracle中,数据存储与索引的基本结构就是我们耳熟能详的B树和B+树。而在一些主流的NoSQL数据库如HBase、Cassandra、LevelDB、RocksDB中,则是使用日志结构合并树(Log-structured Merge Tree,LSM Tr

【spring】does not have member field ‘com.sun.tools.javac.tree.JCTree qualid

spring-in-action-6-samples 的JDK版本 最小是11,我使用 了22: jdk21 jdk22 都与lombok 不兼容,必须使用兼容版本, 否则报错: thingsboard 的大神解释了: java: java.lang.NoSuchFieldError: Class com

[LeetCode] 863. All Nodes Distance K in Binary Tree

题:https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree/ 题目大意 求给树中,距给定 结点 指定长度的 所有结点的val 思路 tree -> graph 、 bfs 先遍历树,并用map记录每个结点的父结点 ,将树变为图,然后 bfs。 /*** Definition for a binary tree

js实现树级递归,通过js生成tree树形菜单(递归算法)

1、效果图 需求:首先这是一个数据集—js的类型,我们需要把生成一个tree形式的对象 : var data = [{ id: 1, name: "办公管理", pid: 0 },{ id: 2, name: "请假申请", pid: 1 },{ id: 3, name: "出差申请", pid: 1 },{ id: 4, name: "请假记录", pid: 2 },{ id:

【unity实战】利用Root Motion+Blend Tree+Input System+Cinemachine制作一个简单的角色控制器

文章目录 前言动画设置Blend Tree配置角色添加刚体和碰撞体代码控制人物移动那么我们接下来调整一下相机的视角效果参考完结 前言 Input System知识参考: 【推荐100个unity插件之18】Unity 新版输入系统Input System的使用,看这篇就够了 Cinemachine虚拟相机知识参考: 【推荐100个unity插件之10】Unity最全的最详细的C

树链剖分 + 后缀数组 - E. Misha and LCP on Tree

E. Misha and LCP on Tree  Problem's Link   Mean:  给出一棵树,每个结点上有一个字母。每个询问给出两个路径,问这两个路径的串的最长公共前缀。 analyse: 做法:树链剖分+后缀数组. 记录每条链的串,正反都需要标记,组成一个长串. 然后记录每条链对应的串在大串中的位置,对大串求后缀数组,最后询问就是在一些链

数据结构 - Codeforces Round #353 (Div. 2) D. Tree Construction

Tree Construction  Problem's Link  ---------------------------------------------------------------------------- Mean:  给定n个数,按照构造Binary Search Tree的方式来构造BST树,按顺序输出每一个非root结点的父节点的值。 analyse

【HDU】4871 Shortest-path tree 最短路+点分治

传送门:【HDU】4871 Shortest-path tree 题目分析: 学了点分治后来看这道题,简直就是水题。。。 但是我竟然花了将近一个晚上才写出来。。。就因为一个地方写漏了T U T。。 首先根据题意求一棵树,最短路一下,然后最小字典序就按照编号顺序遍历邻接表给节点标记。 剩下的就是树分治的事了。 在以重心X为根的子树中,按照X的子节点v的子树中最长路径包含节点数升序遍