首页 > 其他分享 >SPOJ 375 QTREE系列-Query on a tree (树链剖分)

SPOJ 375 QTREE系列-Query on a tree (树链剖分)

时间:2023-04-13 21:39:28浏览次数:41  
标签:rt const 剖分 int tree son ans 树链 include

题目地址:SPOJ 375
树链剖分第一发!
果然是个貌似很高级的数据结构,其实就是把树的边从树形结构转化成了线性结构,从而可以用线段树或树状数组之类的数据结构进行快速维护。从而将时间缩到n*log(2*n).
这题用的线段树维护的。
代码如下:

#include <iostream>
#include <string.h>
#include <math.h>
#include <queue>
#include <algorithm>
#include <stdlib.h>
#include <map>
#include <set>
#include <stdio.h>
using namespace std;
#define LL long long
#define pi acos(-1.0)
//#pragma comment(linker, "/STACK:1024000000")
const int mod=1e9+7;
const int INF=0x3f3f3f3f;
const double eqs=1e-3;
const int MAXN=10000+10;
#define root 1, n, 1
#define lson l, mid, rt<<1
#define rson mid+1, r, rt<<1|1
int Max[MAXN<<2], head[MAXN], cnt, n;
int siz[MAXN], dep[MAXN], w[MAXN], top[MAXN], son[MAXN], fa[MAXN], tot;
struct node
{
        int u, v, w, next;
}edge[MAXN<<1];
void add(int u, int v, int w)
{
        edge[cnt].u=u;
        edge[cnt].v=v;
        edge[cnt].w=w;
        edge[cnt].next=head[u];
        head[u]=cnt++;
}
void init()
{
        memset(head,-1,sizeof(head));
        cnt=0;
        memset(dep,0,sizeof(dep));
        memset(son,0,sizeof(son));
        memset(Max,0,sizeof(Max));
        tot=0;
}
void dfs1(int u, int p)
{
        siz[u]=1;
        for(int i=head[u];i!=-1;i=edge[i].next){
                int v=edge[i].v;
                if(v==p) continue ;
                dep[v]=dep[u]+1;
                dfs1(v,u);
                fa[v]=u;
                if(siz[v]>siz[son[u]]) son[u]=v;
                siz[u]+=siz[v];
        }
}
void dfs2(int u, int tp)
{
        w[u]=++tot; top[u]=tp;
        if(son[u]) dfs2(son[u],top[u]);
        for(int i=head[u];i!=-1;i=edge[i].next){
                int v=edge[i].v;
                if(v!=son[u]&&v!=fa[u])
                        dfs2(v,v);
        }
}
struct Line_Tree
{
        void PushUp(int rt)
        {
                Max[rt]=max(Max[rt<<1],Max[rt<<1|1]);
        }
        void Update(int p, int x, int l, int r, int rt)
        {
                if(l==r){
                        Max[rt]=x;
                        return ;
                }
                int mid=l+r>>1;
                if(p<=mid) Update(p,x,lson);
                else Update(p,x,rson);
                PushUp(rt);
        }
        int Query(int ll, int rr, int l, int r, int rt)
        {
                if(ll<=l&&rr>=r){
                        return Max[rt];
                }
                int mid=l+r>>1, ans=0;
                if(ll<=mid) ans=max(Query(ll,rr,lson),ans);
                if(rr>mid) ans=max(ans,Query(ll,rr,rson));
                return ans;
        }
}lt;
int Query(int u, int v)
{
        int f1=top[u], f2=top[v], ans=0;
        while(f1!=f2){
                if(dep[f1]<dep[f2]){
                        swap(u,v);
                        swap(f1,f2);
                }
                ans=max(ans,lt.Query(w[f1],w[u],root));
                u=fa[f1];f1=top[u];
        }
        if(u==v) return ans;
        if(dep[u]<dep[v]) swap(u,v);
        return max(ans,lt.Query(w[son[v]],w[u],root));
}
int main()
{
        int m, q, i, u, v, T, x, c;
        char s[10];
        scanf("%d",&T);
        while(T--){
                scanf("%d",&n);
                init();
                for(i=1;i<n;i++){
                        scanf("%d%d%d",&u,&v,&c);
                        add(u,v,c);
                        add(v,u,c);
                }
                dfs1(1,-1);
                dfs2(1,1);
                for(i=0;i<cnt;i+=2){
                        u=edge[i].u;
                        v=edge[i].v;
                        if(dep[u]<dep[v]) swap(u,v);
                        lt.Update(w[u],edge[i].w,root);
                }
                while(scanf("%s",s)!=EOF&&s[0]!='D'){
                        if(s[0]=='C'){
                                scanf("%d%d",&x,&c);
                                u=edge[x-1<<1].u;
                                v=edge[x-1<<1].v;
                                if(dep[u]<dep[v]) swap(u,v);
                                lt.Update(w[u],c,root);
                        }
                        else{
                                scanf("%d%d",&u,&v);
                                printf("%d\n",Query(u,v));
                        }
                }
        }
        return 0;
}

标签:rt,const,剖分,int,tree,son,ans,树链,include
From: https://blog.51cto.com/u_16070138/6188408

相关文章

  • BZOJ 1036 [ZJOI2008] 树的统计Count (树链剖分)
    题目地址:BZOJ1036树链剖分裸题,需要用线段树同时维护最大值与和值两个信息,只是代码量大一点而已。。代码如下:#include<iostream>#include<string.h>#include<math.h>#include<queue>#include<algorithm>#include<stdlib.h>#include<map>#include<set&g......
  • POJ 3237 Tree (树链剖分)
    题目地址:POJ3237这题用了一下午。。本来一直认为max和min两个数组是不用改的,只需要改lazy数组,然后在查询的时候利用lazy标记来返回max或-min,后来发现错的很严重。。这题要在pushdown中修改max和min数组,从而实现最大值取反。代码如下:#include<iostream>#include<strin......
  • Element Plus Tree 树 回显
     <el-form-itemlabel="菜单权限">       <el-tree:data="navList"ref="treeRef"  node-key="menuId"highlight-current=“true”:props="defaultProps" @check="checked" show-checkboxcl......
  • TreeMap源码
          常见面试题:    ......
  • 自己动手,通过源码找回 Ant-Design-Blaozr 中 Tree 组件的搜索筛选效果
    最近更新一个Blazorserver的项目,顺带把用到的Ant-Design-Blazor升级到了最新的0.14.4,结果发现之前在0.8.4版本中Tree组件的搜索显示效果变了,从仅显示找到的节点变成了在全部节点中高亮显示匹配的结果,为了节省用户沟通成本(就是懒得跟最终用户费口舌解释),于是自己动手把这个......
  • TreeMap
        ......
  • UVa 112 Tree Summing (scanf()去空格&递归&二叉树遍历)
    112-TreeSummingTimelimit:3.000secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=48BackgroundLISPwasoneoftheearliesthigh-levelprogramminglanguagesand,withFORTRAN,isoneoft......
  • UVa 143 Orchard Trees (数学&计算几何&枚举)
    143-OrchardTreesTimelimit:3.000secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=79AnOrchardisthasplantedanorchardinarectanglewithtreesuniformlyspacedinbothdirections.T......
  • TreeMap运行错误
    Exceptioninthread"main"java.lang.ClassCastException:Day16_TreeMap.Starcannotbecasttojava.lang.Comparable提示类型转换错误,publicstaticvoidmain(String[]args){TreeMap<Star,String>Tr=newTreeMap<Star,String>();//下句出错......
  • 利用pandas 和 ttk.Treeviews制作xlsx视图工具
     importtkinterastkfromtkinterimportttkimportpandasaspdimporttkinter.messageboxasmsgboxdefStart():msgbox.showinfo('提示','OK')fp=pd.read_excel("./test.xlsx")foriintree.get_children():......