poj 3321 Apple Tree(dfs标号+树状数组)

题意:
给出一个苹果树,每个节点一开始都有苹果
C X,如果X点有苹果,则拿掉,如果没有,则新长出一个
Q X,查询X点与它的所有后代分支一共有几个苹果

很好的一个题,讲一个树通过标号,巧妙的转换成了树状数组。


参考思路:点击打开链接

思路很巧妙,我们通过自己来编号所有苹果,每个节点保存两个值,左值为本身,右值为

其包含的所有后代中最大的编号

我们可以通过搜索来进行编号,在编好号之后,我们可以知道,对于某一点而言,我们是

先通过这个点搜完所有他的后代编号才结束的,所以这个点的右值,包含了当前点所有的

后代与祖先,后代必然是所有编号大于本节点的点,那么祖先呢,那必然是编号小于这个

节点的点了。

所以我们通过sum(rig[x])-sum(lef[x]-1)就能得到查询的答案

至于更新,只需要更新当前点即可,这样就转化为树状数组了。



代码:
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int maxn = 1e5+5;
int n, m, k, num, cur, head[maxn], l[maxn], r[maxn], tree[maxn];
struct node
{
    int v, next;
}edge[maxn];

void addEdge(int u, int v)
{
    edge[k].v = v;
    edge[k].next = head[u];
    head[u] = k++;
}

void dfs(int cur)
{
    l[cur] = num;
    for(int i = head[cur]; i != -1; i = edge[i].next)
    {
        num++;;
        dfs(edge[i].v);
    }
    r[cur] = num;
}

int lowbit(int x) { return x&(-x); }

void update(int pos, int val)
{
    while(pos < maxn)
    {
        tree[pos] += val;
        pos += lowbit(pos);
    }
}

int query(int pos)
{
    int sum = 0;
    while(pos)
    {
        sum += tree[pos];
        pos -= lowbit(pos);
    }
    return sum;
}

int main(void)
{
    while(cin >> n)
    {
        k = 0;
        memset(tree, 0, sizeof(tree));
        memset(head, -1, sizeof(head));
        for(int i = 1; i < n; i++)
        {
            int u, v;
            scanf("%d%d", &u, &v);
            addEdge(u, v);
        }
        for(int i = 1; i <= n; i++) update(i, 1);
        num = 1;
        dfs(1);
        scanf("%d", &m);
        while(m--)
        {
            char cmd;
            int x;
            scanf(" %c%d", &cmd, &x);
            if(cmd == 'C')
            {
                if(query(l[x])-query(l[x]-1)) update(l[x], -1);
                else update(l[x], 1);
            }
            else printf("%d\n", query(r[x])-query(l[x]-1));
        }
    }
    return 0;
}



Apple Tree
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 27221 Accepted: 8078

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

Source

POJ Monthly--2007.08.05, Huang, Jinsong


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值