HDU 3974 Assign the task 图论/线段树区间更新,单点查询

题目链接:

http://acm.hdu.edu.cn/showproblem.php?pid=3974

题意:

给你一个树,v,u 表示u是v的上司
有两个操作
1.让某一个点,和他的儿子们全部染成X
2.查询某一个点是什么颜色

题解:

当成图论跑一发,对于每一个查询直接跑到根位置就好,更新的时候,注意更新的时间问题

线段树也可以做:
将树映射到区间的线段树。。。
主要是将原有的关系树根据BOSS关系从新编号,
以便把每个BOSS所带领的员工全部压入一个连续区间内,
然后记录每个BOSS的起始编号和他的最后一名的员工的编号,
然后用线段树区间更新,单点查找即可。

代码:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MS(a) memset(a,0,sizeof(a))
#define MP make_pair
#define PB push_back
const int INF = 0x3f3f3f3f;
const ll INFLL = 0x3f3f3f3f3f3f3f3fLL;
inline ll read(){
    ll x=0,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
//////////////////////////////////////////////////////////////////////////
const int maxn = 1e5+10;

struct node{
    int col,t;
}a[maxn];

int fa[maxn];

int main(){
    int T = read();
    for(int cas=1; cas<=T; cas++){
        int n = read();
        for(int i=0; i<=n; i++)
            fa[i] = -1;
        for(int i=0; i<=n; i++){
            a[i].col = a[i].t = -1;
        }
        for(int i=1; i<n; i++){
            int v,u; scanf("%d%d",&v,&u);
            fa[v] = u;
        }
        int m = read();
        printf("Case #%d:\n",cas);
        int t = 0;
        while(m--){
            char op; scanf(" %c",&op);
            if(op == 'C'){
                int u = read(), col = -1, tmp=-1;
                while(u!=-1){
                    if(a[u].t > tmp){
                        col = a[u].col;
                        tmp = a[u].t;
                    }

                    u = fa[u];
                }
                printf("%d\n",col);
            }else{
                int u=read(), col=read();
                a[u].col = col;
                a[u].t = ++t;
            }
        }
    }

    return 0;
}

线段树:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MS(a) memset(a,0,sizeof(a))
#define MP make_pair
#define PB push_back
const int INF = 0x3f3f3f3f;
const ll INFLL = 0x3f3f3f3f3f3f3f3fLL;
inline ll read(){
    ll x=0,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
//////////////////////////////////////////////////////////////////////////
const int maxn = 5e4+10;

int fa[maxn],cnt;
int st[maxn],en[maxn];
vector<int> g[maxn];

void dfs(int u,int fa){
    st[u] = ++cnt;
    for(auto v : g[u]){
        dfs(v,u);
    }
    en[u] = cnt;
}

struct node{
    int l,r,col;
}tree[maxn<<2];

void pushdown(int rt){
    if(tree[rt].col!=-1){
        tree[rt<<1].col = tree[rt<<1|1].col = tree[rt].col;
        tree[rt].col = -1;
    }
}

void build(int rt,int l,int r){
    tree[rt].l = l, tree[rt].r = r;
    tree[rt].col = -1;
    if(l != r){
        int mid = (l+r)/2;
        build(rt<<1,l,mid);
        build(rt<<1|1,mid+1,r);
    }
}

void update(int rt,int l,int r,int val){
    int L = tree[rt].l, R = tree[rt].r;
    if(l<=L && R<=r){
        tree[rt].col = val;
        return ;
    }
    pushdown(rt);
    int mid = (L+R)/2;
    if(l <= mid) update(rt<<1,l,r,val);
    if(r > mid) update(rt<<1|1,l,r,val);
}

int query(int rt,int p){
    int L = tree[rt].l, R = tree[rt].r;
    if(L == R){
        return tree[rt].col;
    }
    int mid = (L+R)/2;
    pushdown(rt);
    if(p <= mid)
        return query(rt<<1,p);
    else
        return query(rt<<1|1,p);
}

int main(){
    int T = read();
    for(int cas=1; cas<=T; cas++){
        printf("Case #%d:\n",cas);
        int n = read();
        MS(fa);
        for(int i=0; i<=n; i++)
            g[i].clear();
        for(int i=1; i<n; i++){
            int v=read(),u=read();
            fa[v] = u;
            g[u].push_back(v);
        }

        cnt = 0;
        for(int i=1; i<=n; i++){
            if(fa[i] == 0){
                dfs(i,0);
                break;
            }
        }
        // cout << "hh " << cnt << endl;
        build(1,1,n);
        int m = read();
        while(m--){
            char op; scanf(" %c",&op);
            if(op == 'C'){
                int u = read();
                int ans = query(1,st[u]);
                printf("%d\n",ans);
            }else{
                int u=read(),c=read();
                update(1,st[u],en[u],c);
            }
        }
    }

    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值