zoukankan      html  css  js  c++  java
  • HDU3974(dfs+线段树)

    Assign the task

    Time Limit: 15000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 2008 Accepted Submission(s): 895


    Problem Description
    There is a company that has N employees(numbered from 1 to N),every employee in the company has a immediate boss (except for the leader of whole company).If you are the immediate boss of someone,that person is your subordinate, and all his subordinates are your subordinates as well. If you are nobody's boss, then you have no subordinates,the employee who has no immediate boss is the leader of whole company.So it means the N employees form a tree.

    The company usually assigns some tasks to some employees to finish.When a task is assigned to someone,He/She will assigned it to all his/her subordinates.In other words,the person and all his/her subordinates received a task in the same time. Furthermore,whenever a employee received a task,he/she will stop the current task(if he/she has) and start the new one.

    Write a program that will help in figuring out some employee’s current task after the company assign some tasks to some employee.

    Input
    The first line contains a single positive integer T( T <= 10 ), indicates the number of test cases.

    For each test case:

    The first line contains an integer N (N ≤ 50,000) , which is the number of the employees.

    The following N - 1 lines each contain two integers u and v, which means the employee v is the immediate boss of employee u(1<=u,v<=N).

    The next line contains an integer M (M ≤ 50,000).

    The following M lines each contain a message which is either

    "C x" which means an inquiry for the current task of employee x

    or

    "T x y"which means the company assign task y to employee x.

    (1<=x<=N,0<=y<=10^9)

    Output
    For each test case, print the test case number (beginning with 1) in the first line and then for every inquiry, output the correspond answer per line.

    Sample Input
    1
    5
    4 3
    3 2
    1 3
    5 2
    5
    C 3
    T 2 1
    C 3
    T 3 2
    C 3

    Sample Output
    Case #1:
    -1
    1
    2

    思路:dfs序+线段树

    #include <cstdio>
    #include <cstring>
    using namespace std;
    const int MAXN=50005;
    struct Edge{
        int to,net;
    }es[MAXN+MAXN];
    int head[MAXN],tot;
    int n,m;
    void addedge(int u,int v)
    {
        es[tot].to=v;
        es[tot].net=head[u];
        head[u]=tot++;
    }
    struct Node{
        int lazy,l,r;
    }a[MAXN*3];
    void pushUp(int rt)
    {
        if(a[rt<<1].lazy==a[(rt<<1)|1].lazy)    a[rt].lazy=a[rt<<1].lazy;
        else    a[rt].lazy=-1;
    }
    void build(int rt,int l,int r)
    {
        a[rt].l=l;
        a[rt].r=r;
        a[rt].lazy=-1;
        if(l==r)
        {
            return ;
        }
        int mid=(a[rt].l+a[rt].r)>>1;
        build(rt<<1,l,mid);
        build((rt<<1)|1,mid+1,r);
        pushUp(rt);
    }
    void pushDown(int rt)
    {
        a[rt<<1].lazy=a[rt].lazy;
        a[(rt<<1)|1].lazy=a[rt].lazy;
        a[rt].lazy=-1;
    }
    void update(int rt,int l,int r,int val)
    {
        if(a[rt].l==l&&a[rt].r==r)
        {
            a[rt].lazy=val;
            return ;
        }
        if(a[rt].lazy!=-1)
        {
            pushDown(rt);
        }
        int mid=(a[rt].l+a[rt].r)>>1;
        if(r<=mid)
        {
            update(rt<<1,l,r,val);
        }
        else if(mid<l)
        {
            update((rt<<1)|1,l,r,val);
        }
        else
        {
            update(rt<<1,l,mid,val);
            update((rt<<1)|1,mid+1,r,val);
        }
        pushUp(rt);
    }
    int query(int rt,int pos)
    {
        if(a[rt].l==pos&&a[rt].r==pos)
        {
            return a[rt].lazy;
        }
        if(a[rt].lazy!=-1)
        {
            pushDown(rt);
        }
        int mid=(a[rt].l+a[rt].r)>>1;
        if(pos<=mid)
        {
            return query(rt<<1,pos);
        }
        else
        {
            return query((rt<<1)|1,pos);
        }
    }
    int l[MAXN],r[MAXN],key,deg[MAXN],root;
    void dfs(int u)
    {
        l[u]=++key;
        for(int i=head[u];i!=-1;i=es[i].net)
        {
            dfs(es[i].to);
        }
        r[u]=key;
    }
    int main()
    {
        int T;
        scanf("%d",&T);
        for(int cas=1;cas<=T;cas++)
        {
            memset(head,-1,sizeof(head));        
            tot=0;
            key=0;
            memset(deg,0,sizeof(deg));
            scanf("%d",&n);
            for(int i=0;i<n-1;i++)
            {
                int u,v;
                scanf("%d%d",&u,&v);
                addedge(v,u);
                deg[u]++;
            }
            for(int i=1;i<=n;i++)
            {
                if(deg[i]==0)
                {
                    root=i;
                }
            }
            dfs(root);
            build(1,1,key);
            scanf("%d",&m);
            printf("Case #%d:
    ",cas);
            for(int i=0;i<m;i++)
            {
                scanf("%*c");
                char op;
                scanf("%c",&op);
                if(op=='C')
                {
                    int x;
                    scanf("%d",&x);
                    int res=query(1,l[x]);
                    printf("%d
    ",res);
                }
                else
                {
                    int x,y;
                    scanf("%d%d",&x,&y);
                    update(1,l[x],r[x],y);
                }
            }
        }
        return 0;
    }
  • 相关阅读:
    extel操作
    postman 使用post方式提交参数值
    json_encode 转化数组时,中文不转义出现乱码的解决方法
    csnd 不好使,所以我来博客园了
    Nodejs 之Ajax的一个实例(sql单条件查询&并显示在Browser端界面上)
    JS 之JSON
    Nodejs sql模块及模块化思想
    Nodejs之Ajax
    Nodejs 之express框架的应用---简单的登录界面
    Nodejs 入门 12-28
  • 原文地址:https://www.cnblogs.com/program-ccc/p/5126222.html
Copyright © 2011-2022 走看看