poj 3237 Tree 树链剖分+线段树

Description

You are given a tree with N nodes. The tree’s nodes are numbered 1 through N and its edges are numbered 1 through N ? 1. Each edge is associated with a weight. Then you are to execute a series of instructions on the tree. The instructions can be one of the following forms:

CHANGE i v : Change the weight of the ith edge to v

NEGATE a b : Negate the weight of every edge on the path from a to b

QUERY a b: Find the maximum weight of edges on the path from a to b

Input

The input contains multiple test cases. The first line of input contains an integer t (t ≤ 20), the number of test cases. Then follow the test cases.

Each test case is preceded by an empty line. The first nonempty line of its contains N (N ≤ 10,000). The next N ? 1 lines each contains three integers a, b and c, describing an edge connecting nodes a and b with weight c. The edges are numbered in the order they appear in the input. Below them are the instructions, each sticking to the specification above. A lines with the word “DONE” ends the test case.

Output

For each “QUERY” instruction, output the result on a separate line.

Sample Input

1

3
1 2 1
2 3 2
QUERY 1 2
CHANGE 1 3
QUERY 1 2
DONE

Sample Output

1
3
解析:很纯的一道树链剖分和线段树lazy标记的题,题解也有很多,这里只写下我处理的细节
细节:
1. 将边权赋给子节点,所以dfs求解父节点时,就直接给子节点赋予边的权值。同时为了之后的线段树的下标从1 ~ n-1根节点在树链剖分中的index 需要从0开始;
2.  对于改变某条边的权值,必须知道该边所对应的节点的id, 由于是链式建边的,所以最好使得2 ,3表示为第一条边,这样 i >> 1就表示当初输入时边的序号。
3. 线段树的pushdown操作注意下即可;(一是出现的位置不同,二是 是否及时pushdown)

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
#define lson l , m , rt<<1
#define rson m+1, r, rt<<1|1
#define inf 0x3f3f3f3f
#define MS1(a) memset(a,-1,sizeof(a))
const int maxn = 100007;
int head[maxn], tot, pos, son[maxn];
void init(){
    memset(head, 0, sizeof(head));
    pos = 0; tot = 1;
    MS1(son);
}
struct edge{
    int to, w, nxt;
}e[maxn<<1];

inline void ins(int u, int v,int w = 0)
{
    e[++tot].nxt = head[u];
    e[tot].to = v;
    e[tot].w = w;
    head[u] = tot;
}
int idx[maxn], weight[maxn];
int fa[maxn], cnt[maxn], dept[maxn];
void dfs(int u,int pre,int dep)
{
    cnt[u] = 1;
    fa[u] = pre;
    dept[u] = dep;
    for(int i = head[u]; i; i = e[i].nxt){
        int v = e[i].to;
        if(v != pre){
            weight[v] = e[i].w;                       // 建线段树时,根据点来得到边权
              idx[i>>1] = v;                            // change 边的id -> 子节点;
            dfs(v, u, dep+1);
            cnt[u] += cnt[v];
            if(son[u] == -1 || cnt[son[u]] < cnt[v])
                son[u] = v;
        }
    }
}
int p[maxn], fp[maxn], top[maxn];

void dfs(int u,int sp)
{
    top[u] = sp;
    p[u] = pos++;   // pos++
    fp[p[u]] = u;
    if(son[u] == -1) return ;
    dfs(son[u], sp);
    for(int i = head[u]; i; i = e[i].nxt){
        int v = e[i].to;

        if(v != fa[u] && v != son[u])
            dfs(v, v);
    }
}

int mx[maxn], mn[maxn], lazy[maxn];
void pushup(int rt)
{
    mx[rt] = max(mx[rt<<1], mx[rt<<1|1]);
    mn[rt] = min(mn[rt<<1], mn[rt<<1|1]);
}
void build(int l, int r, int rt)
{
    if(l == r){
        mx[rt] = mn[rt] = weight[fp[l]];  // l为树链剖分之后点的id,需要转化为之前的id,得到权值;
        return ;
    }
    int m = l + r >> 1;
    if(l <= m) build(lson);
    if(m < r) build(rson);
    pushup(rt);
}
void print(int l,int r,int rt)
{
    if(l == r){
        printf("%d ",mx[rt]);
        return ;
    }
    int m = l + r >> 1;
    print(lson);
    print(rson);
}
void pushdown(int rt)
{
    if(lazy[rt]){
        lazy[rt] = 0;
        rt <<= 1;

        int t = -mx[rt];
        mx[rt] = -mn[rt];
        mn[rt] = t;
        lazy[rt] ^= 1;

        rt |= 1;

        t = -mx[rt];
        mx[rt] = -mn[rt];
        mn[rt] = t;
        lazy[rt] ^= 1;
    }
}
int query(int L, int R, int l,int r,int rt)
{
    if(lazy[rt]) pushdown(rt);
    if(L <= l && r <= R) return mx[rt];

    int m = l + r >> 1;
    int mx = -inf;
    if(L <= m) mx = max(mx, query(L, R, lson));
    if(m < R) mx = max(mx, query(L, R, rson));
    return mx;
}
int n;
int query(int u,int v)
{
    int fu = top[u], fv = top[v];
    int ans = -inf;
    while(fu != fv){
        if(dept[fu] < dept[fv]){
            swap(fu, fv); swap(u, v);
        }

        ans = max(ans, query(p[fu], p[u], 1, n-1, 1));
        u = fa[fu];
        fu = top[u];

    }
    if(u == v) return ans;
    if(dept[u] < dept[v]) swap(u, v);

    return max(ans, query(p[son[v]], p[u], 1, n-1, 1));
}
void update(int p,int val,int l,int r,int rt)
{
    pushdown(rt);
    if(l == r){
        mx[rt] = mn[rt] = val;
        return ;
    }
    int m = l + r >> 1;
    if(p <= m) update(p, val, lson);
    else update(p, val, rson);
    pushup(rt);
}
void Change(int pos, int val)
{
    int id = p[idx[pos]];
    update(id, val, 1, n-1, 1);
}
void lazyNegate(int L,int R,int l,int r,int rt)
{
    if(L <= l && r <= R){

        int t = mx[rt];
        mx[rt] = -mn[rt];
        mn[rt] = -t;
        lazy[rt] ^= 1;
        return ;
    }
    pushdown(rt);
    int m = l + r >> 1;
    if(L <= m) lazyNegate(L, R, lson);
    if(m < R) lazyNegate(L, R, rson);
    pushup(rt);
}
void Negate(int u,int v)
{
    int fu = top[u], fv = top[v];
    while(fu != fv){
        if(dept[fu] < dept[fv]){
            swap(fu, fv); swap(u, v);
        }
        lazyNegate(p[fu], p[u], 1, n-1, 1);
        u = fa[fu];
        fu = top[u];
    }
    if(u == v) return ;
    if(dept[u] < dept[v]) swap(u, v);

    lazyNegate(p[son[v]], p[u], 1, n-1, 1);
}
int main()
{
    //freopen("in.txt","r", stdin);
    //freopen("out.txt","w",stdout);
    int T;
    cin >> T;
    while(T--){
        init();
        int u, v, w;
        scanf("%d", &n);
        for(int i = 1;i < n; i++){
            scanf("%d%d%d",&u, &v, &w);
            ins(u,v,w);
            ins(v,u,w);
        }
        dfs(1,0,0);
        dfs(1,1);

        build(1,n-1,1);
        memset(lazy, 0, sizeof(lazy));

        char op[10];
        int a, b, cnt = 0;
        while(scanf("%s", op) == 1, op[0] != ‘D‘){
            scanf("%d%d", &a, &b);
            if(op[0] == ‘Q‘)
                printf("%d\n", query(a, b));
            else if(op[0] == ‘C‘) Change(a, b);
            else Negate(a, b);
            //print(1,n-1,1);
        }
    }
}
时间: 2024-12-25 18:38:06

poj 3237 Tree 树链剖分+线段树的相关文章

Aizu 2450 Do use segment tree 树链剖分+线段树

Do use segment tree Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://www.bnuoj.com/v3/problem_show.php?pid=39566 Description Given a tree with n (1 ≤ n ≤ 200,000) nodes and a list of q (1 ≤ q ≤ 100,000) queries, process the queries in order and out

【POJ3237】Tree(树链剖分+线段树)

Description You are given a tree with N nodes. The tree’s nodes are numbered 1 through N and its edges are numbered 1 throughN − 1. Each edge is associated with a weight. Then you are to execute a series of instructions on the tree. The instructions

SPOJ - QTREE 375 Query on a tree 树链剖分+线段树

操作1:修改第k条边权. 操作2:询问两点间最大边权. 树链剖分,然后线段树维护最大值 #include<cstdio> #include<cstring> #include<cmath> #include<iostream> #include<algorithm> #include<set> #include<map> #include<queue> #include<vector> #inclu

【CF725G】Messages on a Tree 树链剖分+线段树

[CF725G]Messages on a Tree 题意:给你一棵n+1个节点的树,0号节点是树根,在编号为1到n的节点上各有一只跳蚤,0号节点是跳蚤国王.现在一些跳蚤要给跳蚤国王发信息.具体的信息传输过程如下: 1.信息的发起者把信息上传给他父亲节点处的跳蚤,然后自身进入等待状态.3.跳蚤国王在收到信息时会将信息立刻下传到发来信息的那个儿子,跳蚤国王可以在同一时刻下传多份信息.4.上传:a把信息传给b.如果b正处于等待状态,则b会立刻将a发来的信息下传回去.如果同时有好多个信息传给b,则b会

Hdu 3966 Aragorn&#39;s Story (树链剖分 + 线段树区间更新)

题目链接: Hdu 3966 Aragorn's Story 题目描述: 给出一个树,每个节点都有一个权值,有三种操作: 1:( I, i, j, x ) 从i到j的路径上经过的节点全部都加上x: 2:( D, i, j, x ) 从i到j的路径上经过的节点全部都减去x: 3:(Q, x) 查询节点x的权值为多少? 解题思路: 可以用树链剖分对节点进行hash,然后用线段树维护(修改,查询),数据范围比较大,要对线段树进行区间更新 1 #include <cstdio> 2 #include

[HDU3710] Battle Over Cities [树链剖分+线段树+并查集+kruskal+思维]

题面 一句话题意: 给定一张 N 个点, M 条边的无向连通图, 每条边上有边权 w . 求删去任意一个点后的最小生成树的边权之和. 思路 首先肯定要$kruskal$一下 考虑$MST$里面去掉一个点,得到一堆联通块,我们要做的就是用原图中剩下的边把这些联通块穿起来 考虑这个点$u$在$MST$上的位置,可以知道有两种边:一种是从$u$的任意一个儿子的子树连到$u$的子树外面的,一种是在$u$的两个儿子的子树之间连接的 第一种情况: 考虑边$(u,v)$,没有进入$MST$中,那么若它是某个节

【bzoj3589】动态树 树链剖分+线段树

题目描述 别忘了这是一棵动态树, 每时每刻都是动态的. 小明要求你在这棵树上维护两种事件 事件0:这棵树长出了一些果子, 即某个子树中的每个节点都会长出K个果子. 事件1:小明希望你求出几条树枝上的果子数. 一条树枝其实就是一个从某个节点到根的路径的一段. 每次小明会选定一些树枝, 让你求出在这些树枝上的节点的果子数的和. 注意, 树枝之间可能会重合, 这时重合的部分的节点的果子只要算一次. 输入 第一行一个整数n(1<=n<=200,000), 即节点数. 接下来n-1行, 每行两个数字u,

BZOJ2243 (树链剖分+线段树)

Problem 染色(BZOJ2243) 题目大意 给定一颗树,每个节点上有一种颜色. 要求支持两种操作: 操作1:将a->b上所有点染成一种颜色. 操作2:询问a->b上的颜色段数量. 解题分析 树链剖分+线段树. 开一个记录类型,记录某一段区间的信息.l 表示区间最左侧的颜色 , r 表示区间最右侧的颜色 , sum 表示区间中颜色段数量. 合并时判断一下左区间的右端点和有区间的左端点的颜色是否一样. 树上合并时需要用两个变量ans1,ans2来存储.ans1表示x往上走时形成的链的信息,

bzoj4304 (树链剖分+线段树)

Problem T2 (bzoj4304 HAOI2015) 题目大意 给定一颗树,1为根节点,要求支持三种操作. 操作 1 :把某个节点 x 的点权增加 a . 操作 2 :把某个节点 x 为根的子树中所有点的点权都增加 a . 操作 3 :询问某个节点 x 到根的路径中所有点的点权和. 解题分析 练手题.树链剖分+线段树. 参考程序 1 #include <cstdio> 2 #include <cstring> 3 #include <cmath> 4 #incl

【BZOJ】1146: [CTSC2008]网络管理Network(树链剖分+线段树套平衡树+二分 / dfs序+树状数组+主席树)

第一种做法(时间太感人): 这题我真的逗了,调了一下午,疯狂造数据,始终找不到错. 后来发现自己sb了,更新那里没有打id,直接套上u了.我.... 调了一下午啊!一下午的时光啊!本来说好中午A掉去学习第二种做法,噗 好吧,现在第一种做法是hld+seg+bst+二分,常数巨大,log^4级别,目前只会这种. 树剖后仍然用线段树维护dfs序区间,然后在每个区间建一颗平衡树,我用treap,(这题找最大啊,,,囧,并且要注意,这里的rank是比他大的数量,so,我们在二分时判断要判断一个范围,即要