2016icpc沈阳站网络赛 1002&hdu5893 List wants to travel

题意:树上的线段修改和查询。

分析:很基础的树链剖分题目,只要处理好重链和重链交接的地方就可以了。

吐槽:当时的榜带得太歪了,大家好像都去磨03、04、10好好的02水题都不切。不过我当时实在最后才发现1002是水题…..

模版有些拙。

/************************************************
Author        :DarkTong
Created Time  :2016/9/18 16:06:28
File Name     :1002.cpp
*************************************************/

#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ULL;
typedef long long LL;
const int INF = 0x3f3f3f3f;
const double eps = 1e-9;
typedef int INT;
typedef pair<int , int> Pair;
const int maxn = 40000 + 100;
int mson[maxn], son[maxn], dep[maxn], fa[maxn], val[maxn];
int id[maxn], rid[maxn], top[maxn], cnt, root;
vector<Pair> G[maxn];
void dfs_1(int u)
{
    mson[u]=0;
    son[u]=1;
    int si = G[u].size();
    for(int i=0;i<si;++i) if(G[u][i].first!=fa[u])
    {
        int v=G[u][i].first;
        val[v] = G[u][i].second;
        fa[v]=u;
        dep[v]=dep[u]+1;
        dfs_1(v);
        if(son[mson[u]]<son[v]) mson[u]=v;
        son[u]+=son[v];
    }
}
void dfs_2(int u, int ttop)
{
    rid[cnt] = u;
    id[u]=cnt++;
    top[u]=ttop;
    if(mson[u]) dfs_2(mson[u], ttop);
    int si = G[u].size();
    for(int i=0;i<si;++i) if(G[u][i].first!=mson[u]&&G[u][i].first!=fa[u])
    {
        dfs_2(G[u][i].first, G[u][i].first);
    }
}
void init(int root)
{
    cnt=1;
    fa[root]=root;
    dep[root]=1;
    dfs_1(root);
    dfs_2(root, root);
}
/**********************************/
struct Node
{
    int l, r;
    INT w;
    int cl, cr;
}tree[maxn*4];
void PushUp(int x)
{
    tree[x].w = tree[x<<1].w + tree[x<<1|1].w;
    tree[x].cl = tree[x<<1].cl;
    tree[x].cr = tree[x<<1|1].cr;
    if(tree[x<<1].cr == tree[x<<1|1].cl) tree[x].w--;
}
void PushDown(int x)
{
    //当涂色相同
    if(tree[x].w == 1)
    {
        tree[x<<1].w = tree[x<<1|1].w = 1;
        tree[x<<1].cl = tree[x<<1].cr = tree[x].cl;
        tree[x<<1|1].cl = tree[x<<1|1].cr = tree[x].cr;
    }
}
void Build(int x, int L, int R)
{
    tree[x].l = L;
    tree[x].r = R;
    tree[x].w = 0;
    if(L==R) 
    {
        tree[x].cl = tree[x].cr = val[rid[L]];
        tree[x].w = 1;
        return;
    }
    int m = (L+R)/2;
    if(L<=m) Build(x<<1, L, m);
    if(m<R)  Build(x<<1|1, m+1, R);
    PushUp(x);
}
//对树链的操作
void Update(int x, int L, int R, INT w)
{
    if(L<=tree[x].l&&tree[x].r<=R)
    {
        tree[x].w = 1;
        tree[x].cl = tree[x].cr = w;
        return ;
    }
    PushDown(x);
    int m = (tree[x].l+tree[x].r)/2;
    if(L<=m) Update(x<<1, L, R, w);
    if(m<R)  Update(x<<1|1, L, R, w);
    PushUp(x);
}
INT Queue(int x, int L, int R)
{
    if(L<=tree[x].l&&tree[x].r<=R)
    {
        return tree[x].w;
    }
    PushDown(x);
    int m = (tree[x].l+tree[x].r)/2, f1=0, f2=0;
    INT ans = 0;
    if(L<=m) ans += Queue(x<<1, L, R), f1=1;
    if(m<R)  ans += Queue(x<<1|1, L, R), f2=1;
    if(f1&&f2)
    {
        if(tree[x<<1].cr == tree[x<<1|1].cl) --ans;
    }
    return ans;
}
INT Queue2(int x, int L, int R)
{
    if(L<=tree[x].l&&tree[x].r<=R)
    {
        return tree[x].cl;
    }
    PushDown(x);
    int m = (tree[x].l+tree[x].r)/2;
    if(L<=m) return Queue2(x<<1, L, R);
    if(m<R)  return Queue2(x<<1|1, L, R);
}
INT Queue_T(int u, int v)
{
    int f1=top[u], f2=top[v];
    INT ans = 0;
    int cpu=0, cpv=0, x;
    while(f1!=f2)
    {
        if(dep[f1]>dep[f2])
        {
            swap(f1, f2);
            swap(u, v);
            swap(cpu, cpv);
        }
        //对树链的询问
        ans += Queue(1, id[f2], id[v]);
        //
        x = Queue2(1, id[v], id[v]);
        if(x == cpv) --ans;
        cpv = Queue2(1, id[f2], id[f2]);
//        cout<<"cpv:"<<cpv<<endl;
        //
        v = fa[f2];
        f2 = top[v];
    }
    if(u!=v)
    {
        if(dep[u]>dep[v]) swap(u, v), swap(cpu, cpv);
        //对树链的询问
        ans += Queue(1, id[mson[u]], id[v]);

        x = Queue2(1, id[v], id[v]);
        if(x == cpv) --ans;
        x = Queue2(1, id[mson[u]], id[mson[u]]);
        if(x == cpu) --ans;
    }
    else if(cpu == cpv) --ans;
    return ans;
}
void Update_T(int u, int v, int col)
{
    int f1=top[u], f2=top[v];
    while(f1!=f2)
    {
        if(dep[f1]>dep[f2])
        {
            swap(f1, f2);
            swap(u, v);
        }
        //对树链的询问
        Update(1, id[f2], id[v], col);
//        cout<<"col:"<<Queue2(1, id[f2], id[v])<<endl;
        v = fa[f2];
        f2 = top[v];
    }
    if(u!=v)
    {
        if(dep[u]>dep[v]) swap(u, v);
        //对树链的询问
        Update(1, id[mson[u]], id[v], col);
    }
}

int main()
{
    int T, cas=1, n, m;
    while(scanf("%d%d", &n, &m)==2)
    {
        for(int i=0;i<maxn;++i) G[i].clear();
        int u, v, w;
        for(int i=0;i<n-1;++i)
        {
            scanf("%d%d%d", &u, &v, &w);
            G[u].push_back(make_pair(v, w));
            G[v].push_back(make_pair(u, w));
        }
        root = 1;
        init(root);
        Build(1, 1, cnt-1);
        char op[10];
        while(m--)
        {
            scanf("%s%d%d", op, &u, &v);
            if(op[0]=='Q') printf("%d\n", Queue_T(u, v));
            else scanf("%d", &w), Update_T(u, v, w);
        }

    }
    
    return 0;
}

转载于:https://www.cnblogs.com/DarkTong/p/5883118.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值