POJ - 3321 树状数组+dfs序

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

树状数组+dfs序 (也可以用线段树,这里是树状数组的做法)

树状数组求的是前缀和,而dfs序可以将子树求和问题转化为前缀和问题

#include
#include
#include
#include
using namespace std;
const int num=100005;
vector > vec(num); //不能写成vector vec[num],否则会TLE
int in[num],out[num];
bool mark[num];//标记一下该树杈上是否有苹果
int time,n;
int tree[num];
void dfs_tree(int k,int befk)
{
    in[k]=++time;
    for(int i=0; i0)
    {
        sum+=tree[a];
        a-=lowbit(a);
    }
    return sum;
}
int main()
{
    scanf("%d",&n);
    memset(mark,true,sizeof(mark));
    int a,b;
    for(int i=1; i<=n-1; i++)
    {
        scanf("%d %d",&a,&b);
        vec[a].push_back(b);
        vec[b].push_back(a);
    }
    dfs_tree(1,-1);
    for(int i=1; i<=n; i++)
    {
        tree[i]=lowbit(i);
    }
    char ss[2];
    int m;
    scanf("%d",&m);
    for(int i=0; i

 

你可能感兴趣的:(POJ - 3321 树状数组+dfs序)