zoukankan      html  css  js  c++  java
  • POJ3321(dfs序列+树状数组)

    Apple Tree
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 25711   Accepted: 7624

    Description

    There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefully nurturing the big apple tree.

    The tree has N forks which are connected by branches. Kaka numbers the forks by 1 to N and the root is always numbered by 1. Apples will grow on the forks and two apple won't grow on the same fork. kaka wants to know how many apples are there in a sub-tree, for his study of the produce ability of the apple tree.

    The trouble is that a new apple may grow on an empty fork some time and kaka may pick an apple from the tree for his dessert. Can you help kaka?

    Input

    The first line contains an integer N (N ≤ 100,000) , which is the number of the forks in the tree.
    The following N - 1 lines each contain two integers u and v, which means fork u and fork v are connected by a branch.
    The next line contains an integer M (M ≤ 100,000).
    The following M lines each contain a message which is either
    "x" which means the existence of the apple on fork x has been changed. i.e. if there is an apple on the fork, then Kaka pick it; otherwise a new apple has grown on the empty fork.
    or
    "x" which means an inquiry for the number of apples in the sub-tree above the fork x, including the apple (if exists) on the fork x
    Note the tree is full of apples at the beginning

    Output

    For every inquiry, output the correspond answer per line.

    Sample Input

    3
    1 2
    1 3
    3
    Q 1
    C 2
    Q 1
    

    Sample Output

    3
    2
    #include <cstdio>
    #include <cstring>
    using namespace std;
    const int MAXN=100005;
    struct Edge{
        int to,net;
    }es[MAXN+MAXN];
    int head[MAXN],tot;
    int n,m;
    int bit[MAXN],apple[MAXN],l[MAXN],r[MAXN],key;
    void add(int i,int x)
    {
        while(i<MAXN)
        {
            bit[i]+=x;
            i+=(i&-i);
        }
    }
    int sum(int i)
    {
        int s=0;
        while(i>0)
        {
            s+=bit[i];
            i-=(i&-i);
        }
        return s;
    }
    void addedge(int u,int v)
    {
        es[tot].to=v;
        es[tot].net=head[u];
        head[u]=tot++;
    }
    void dfs(int u,int fa)
    {
        l[u]=++key;
        for(int i=head[u];i!=-1;i=es[i].net)
        {
            int v=es[i].to;
            if(v!=fa)
            {
                dfs(v,u);
            }
        }
        r[u]=key;//不需++ 
    }
    int main()
    {
        while(scanf("%d",&n)!=EOF)
        {
            memset(head,-1,sizeof(head));
            tot=0;
            key=0;
            for(int i=1;i<MAXN;i++)    
            {
                add(i,1);
                apple[i]=1;
            }
            for(int i=0;i<n-1;i++)
            {
                int u,v;
                scanf("%d%d",&u,&v);
                addedge(u,v);
                addedge(v,u);
            }
            scanf("%d",&m);
            dfs(1,-1);
            for(int i=0;i<m;i++)
            {
                scanf("%*c");
                char op;
                int x;
                scanf("%c %d",&op,&x);
                if(op=='Q')
                {
                    int res=sum(r[x])-sum(l[x]-1);
                    printf("%d
    ",res);
                }
                else
                {
                    if(apple[x])    add(l[x],-1);
                    else    add(l[x],1);
                    apple[x]=!apple[x];        
                }
            }
        }
        return 0;
    }
  • 相关阅读:
    pytorch的函数中的group参数的作用
    pytorch的函数中的dilation参数的作用
    resnet18全连接层改成卷积层
    Pytorch实现UNet例子学习
    MyEclipse中出现Address already in use:JVM_Bind:8080
    为SQL数据库创建登录名和密码
    集合体系
    排序算法及其java实现
    java泛型通配符?
    Arrays.asList的用法
  • 原文地址:https://www.cnblogs.com/program-ccc/p/5693220.html
Copyright © 2011-2022 走看看